返回 AiToEarn
tsconfig.app.json
根目录 / project / aitoearn-backend / apps / aitoearn-server / tsconfig.app.json
1 {
2 "extends": "./tsconfig.json",
3 "compilerOptions": {
4 "emitDecoratorMetadata": true,
5 "experimentalDecorators": true,
6 "types": ["node"],
7 "strict": true,
8 "strictBindCallApply": true,
9 "strictNullChecks": true,
10 "noFallthroughCasesInSwitch": true,
11 "noImplicitAny": true,
12 "noImplicitOverride": true,
13 "noImplicitReturns": true,
14 "noPropertyAccessFromIndexSignature": true,
15 "importHelpers": true,
16 "outDir": "../../dist/out-tsc",
17 "forceConsistentCasingInFileNames": true
18 },
19 "include": ["src/**/*.ts"],
20 "exclude": [
21 "vite.config.ts",
22 "vite.config.mts",
23 "vitest.config.ts",
24 "vitest.config.mts",
25 "src/**/*.test.ts",
26 "src/**/*.spec.ts",
27 "src/**/*.test.tsx",
28 "src/**/*.spec.tsx",
29 "src/**/*.test.js",
30 "src/**/*.spec.js",
31 "src/**/*.test.jsx",
32 "src/**/*.spec.jsx"
33 ]
34 }
35
35 lines JSON