forked from juicycleff/ultimate-backend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
executable file
·29 lines (29 loc) · 970 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ub-boilerplate/common": ["libs/common/src/index.ts"],
"@ub-boilerplate/common/*": ["libs/common/src/lib/*"],
"@ub-boilerplate/persistence": ["libs/persistence/src/index.ts"],
"@ub-boilerplate/persistence/*": ["libs/persistence/src/lib/*"],
"@ub-boilerplate/protobuf": ["libs/protobuf/src/index.ts"],
"@ub-boilerplate/protobuf/*": ["libs/protobuf/src/lib/*"],
"@ub/systems-cli": ["libs/systems-cli/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}