-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsconfig.base.json
36 lines (36 loc) · 1.07 KB
/
tsconfig.base.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"rootDir": "./",
"outDir": "./dist",
"sourceMap": true,
"strict": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"target": "es2021",
"module": "esnext",
"lib": ["es2021", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"incremental": true,
"paths": {
"@/api": ["./packages/api/src/index.ts"],
"@/api/*": ["./packages/api/src/*"],
"@/app/*": ["./app.territoiresentransitions.react/src/*"],
"@/auth/*": ["./packages/auth/*"],
"@/backend/*": ["./backend/src/*"],
"@/backend/test": ["./backend/test/index.ts"],
"@/panier/*": ["./packages/panier/*"],
"@/site/*": ["./packages/site/*"],
"@/ui": ["./packages/ui/src/index.ts"],
"@/ui/*": ["./packages/ui/src/*"]
}
},
"exclude": ["node_modules", "tmp"]
}