mirror of
https://github.com/trushildhokiya/allininx-2.git
synced 2025-03-15 20:48:40 +00:00
30 lines
649 B
JSON
30 lines
649 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"noImplicitAny": false,
|
||
|
"target": "es2017",
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"noUncheckedIndexedAccess": true
|
||
|
},
|
||
|
"include": [
|
||
|
"next-env.d.ts",
|
||
|
"**/*.ts",
|
||
|
"**/*.tsx",
|
||
|
"**/*.cjs",
|
||
|
"**/*.mjs",
|
||
|
"**/*.js"
|
||
|
],
|
||
|
"exclude": ["node_modules", "venv"]
|
||
|
}
|