-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
35 lines (35 loc) · 1.28 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
{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "esnext.asynciterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@bison/shared/domain": ["libs/shared/domain/src/index.ts"],
"@bison/backend/infrastructure/repository": [
"libs/backend/infrastructure/repository/src/index.ts"
],
"@bison/backend/domain": ["libs/backend/domain/src/index.ts"],
"@bison/backend/application": ["libs/backend/application/src/index.ts"],
"@bison/frontend/application": ["libs/frontend/application/src/index.ts"],
"@bison/frontend/domain": ["libs/frontend/domain/src/index.ts"],
"@bison/shared/schema": ["libs/shared/schema/src/index.ts"],
"@bison/shared/constants": ["libs/shared/constants/src/index.ts"],
"@bison/types/testing": ["types/testing/index.ts"],
"@bison/frontend/ui": ["libs/frontend/ui/src/index.ts"]
},
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "tmp"]
}