36 lines
931 B
JSON
36 lines
931 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"declaration": true,
|
|
"erasableSyntaxOnly": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact",
|
|
"lib": ["esnext"],
|
|
"module": "NodeNext",
|
|
"noErrorTruncation": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUncheckedSideEffectImports": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "lib",
|
|
"rewriteRelativeImportExtensions": true,
|
|
"rootDir": "src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"types": ["node"],
|
|
"useUnknownInCatchVariables": true,
|
|
"verbatimModuleSyntax": true,
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|