Files
zkldi_Tachi/client/tsconfig.json
T
2022-12-01 21:10:23 +00:00

58 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"rootDir": "src",
"baseUrl": "src",
"outDir": "dist",
"strictNullChecks": true,
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"jsx": "react",
"paths": {
"tachi-common": [
"../../common/src"
],
"tachi-common/*": [
"../../common/src/*"
]
},
"lib": [
"dom.iterable",
"dom",
"ESNext"
],
"module": "esnext",
"removeComments": true,
"alwaysStrict": true,
"allowUnreachableCode": false,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"allowUnusedLabels": true,
"resolveJsonModule": true,
"composite": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": [
"src"
],
"exclude": [
"node_modules"
],
"references": [
{
"path": "../common"
}
],
}