23 lines
610 B
JSON
23 lines
610 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": false,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": false,
|
||
|
|
"sourceMap": true
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules", "dist", ".next", "build"]
|
||
|
|
}
|