Files
optolith-client/tsconfig.json

45 lines
1.1 KiB
JSON

{
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"jsx": "react-jsx",
"lib": ["esnext", "dom"],
"module": "NodeNext",
"noEmit": true,
"noEmitHelpers": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "app/",
"removeComments": true,
"resolveJsonModule": true,
"rootDir": "src/",
"skipLibCheck": true,
"strict": true,
"target": "ESNext",
"useUnknownInCatchVariables": true,
},
"include": [
"src/**/*",
],
"exclude": [
"node_modules",
"src/App/**/*",
"src/Control/**/*",
"src/Data/**/*",
"src/Debug/**/*",
"src/System/**/*",
"src/database/contents/Compatibility/**/*",
"src/database/contents/migration/**/*"
]
}