-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
28 lines (28 loc) · 909 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@app/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@myapp/app-config": ["libs/app-config/src/index.js"],
"@myapp/app-input-validator": ["libs/app-input-validator/src/index.js"],
"@myapp/app-models": ["libs/app-models/src/index.js"],
"@myapp/event": ["libs/app-event/src/index.js"],
"@myapp/user-api-sdk": ["libs/api-sdk/src/index.js"],
"@myapp/utils": ["libs/app-utils/src/index.js"]
}
},
"exclude": ["node_modules", "tmp"]
}