-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
29 lines (29 loc) · 999 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,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@drawhub/client/api": ["libs/client/api/src/index.ts"],
"@drawhub/client/home": ["libs/client/home/src/index.ts"],
"@drawhub/client/public": ["libs/client/public/src/index.ts"],
"@drawhub/client/ui": ["libs/client/ui/src/index.ts"],
"@drawhub/server/auth": ["libs/server/auth/src/index.ts"],
"@drawhub/server/canvas": ["libs/server/canvas/src/index.ts"],
"@drawhub/server/email": ["libs/server/email/src/index.ts"],
"@drawhub/server/upload": ["libs/server/upload/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}