21 lines
533 B
JSON
21 lines
533 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2023"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"allowImportingTsExtensions": true,
|
|
"moduleDetection": "force",
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["src/**/*.ts", "eslint.config.mjs"]
|
|
}
|