Files
core/tsconfig.json
2026-01-12 12:55:42 +01:00

21 lines
480 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src/**/*", "test/**/*", "index.ts"]
}