forked from javissimo/ngx-custom-datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 812 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "es2020",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
"lib": ["es2021", "dom"],
"paths": {
"angular-calendar": ["dist/angular-calendar"],
"angular-calendar/*": ["dist/angular-calendar/*"],
"ngx-custom-datepicker": ["dist/ngx-custom-datepicker"],
"ngx-custom-datepicker/*": ["dist/ngx-custom-datepicker/*"]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}