2022-02-23 03:55:48 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": false,
|
2023-08-12 22:41:36 +08:00
|
|
|
"allowJs": false,
|
|
|
|
"checkJs": false,
|
2022-02-23 03:55:48 +08:00
|
|
|
"outDir": "build",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-03-08 00:10:07 +08:00
|
|
|
"esModuleInterop": true,
|
2022-05-05 21:19:31 +08:00
|
|
|
"strictNullChecks": true,
|
2024-01-19 06:20:44 +08:00
|
|
|
"skipLibCheck": false,
|
2024-01-29 20:27:36 +08:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2024-01-19 06:24:33 +08:00
|
|
|
"noImplicitReturns": true,
|
2024-01-19 06:33:50 +08:00
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-07-16 23:29:09 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"paths": {
|
|
|
|
"@shared/*": ["../shared-types/*"]
|
|
|
|
}
|
2022-02-23 03:55:48 +08:00
|
|
|
},
|
2022-05-05 21:19:31 +08:00
|
|
|
"ts-node": {
|
|
|
|
"files": true
|
|
|
|
},
|
2024-07-16 23:29:09 +08:00
|
|
|
"files": [
|
|
|
|
"./src/types/types.d.ts",
|
|
|
|
"../shared-types/types.d.ts",
|
|
|
|
"../shared-types/config.d.ts"
|
|
|
|
],
|
|
|
|
"include": ["./src/**/*", "../shared-types/**/*.d.ts"],
|
2022-05-05 21:19:31 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"build",
|
|
|
|
"worker.js",
|
|
|
|
"setup-tests.ts",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
2022-02-23 03:55:48 +08:00
|
|
|
}
|