forked from ever-co/ever-gauzy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.12 KB
/
tsconfig.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
37
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"outDir": "./dist/out-tsc",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2016",
"module": "commonjs",
"typeRoots": ["node_modules/@types"],
"lib": ["dom", "es2018", "esnext.array"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"ng2-completer": ["node_modules/@akveo/ng2-completer"],
"@gauzy/wakatime": ["libs/wakatime/src/index.ts"],
"@gauzy/desktop-timer": ["packages/desktop-timer/src/index.ts"],
"@gauzy/desktop-window": ["packages/desktop-window/src/index.ts"],
"@env-desktop/environment": [
"apps/desktop/src/environments/environment.ts"
],
"@gauzy/desktop-ui-lib": ["packages/desktop-ui-lib/src/index.ts"]
},
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": false,
"noImplicitAny": false,
"esModuleInterop": false
},
"exclude": ["coverage/**/*", "dist/**/*", "node_modules", "tmp"]
}