2022-02-12 02:02:21 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-11-15 19:47:47 +08:00
|
|
|
"target": "ES6",
|
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
2024-01-08 22:26:57 +08:00
|
|
|
"types": ["jquery", "select2", "node", "jest"],
|
2022-11-15 19:47:47 +08:00
|
|
|
"allowUmdGlobalAccess": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"outDir": "./build",
|
|
|
|
"newLine": "lf",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"alwaysStrict": true,
|
2023-08-11 01:11:13 +08:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
2022-11-15 19:47:47 +08:00
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2024-01-29 20:27:36 +08:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2022-11-15 19:47:47 +08:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
2023-11-20 22:56:28 +08:00
|
|
|
"skipLibCheck": false,
|
2023-11-09 22:03:56 +08:00
|
|
|
"paths": {
|
|
|
|
"@backend/*": ["../backend/src/*"]
|
|
|
|
}
|
2022-02-12 02:02:21 +08:00
|
|
|
},
|
|
|
|
"include": ["./src/**/*.ts"],
|
2024-01-29 22:53:42 +08:00
|
|
|
"files": ["src/ts/modules.d.ts", "../shared-types/types.d.ts"],
|
2024-01-08 22:26:57 +08:00
|
|
|
"exclude": ["node_modules", "build", "setup-tests.ts", "**/*.spec.ts"]
|
2022-02-12 02:02:21 +08:00
|
|
|
}
|