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