mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-26 17:07:58 +03:00
58 lines
1.1 KiB
JSON
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"
|
|
}
|
|
],
|
|
} |