chatbot-template/tsconfig.json

35 lines
660 B
JSON
Raw Normal View History

2023-05-19 12:33:56 -04:00
{
"compilerOptions": {
2024-10-11 18:00:22 +05:30
"target": "ESNext",
2023-05-19 12:33:56 -04:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2024-10-11 18:00:22 +05:30
"moduleResolution": "bundler",
2023-05-19 12:33:56 -04:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2024-10-11 18:00:22 +05:30
"incremental": true,
2024-11-15 09:56:42 -05:00
"baseUrl": ".",
2023-05-19 12:33:56 -04:00
"plugins": [
{
"name": "next"
}
],
2024-10-11 18:00:22 +05:30
"paths": {
"@/*": ["./*"]
}
2023-05-19 12:33:56 -04:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"next.config.js"
],
2023-05-19 12:33:56 -04:00
"exclude": ["node_modules"]
}