22 lines
573 B
JSON
22 lines
573 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2023",
|
||
|
|
"module": "NodeNext",
|
||
|
|
"moduleResolution": "NodeNext",
|
||
|
|
"lib": ["ES2023"],
|
||
|
|
"strict": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"isolatedModules": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.json"]
|
||
|
|
}
|