-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 660 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 660 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"importHelpers": true,
"outDir": "./dist/out-tsc",
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "bundler",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"paths": {
"angular-split": ["dist/angular-split"],
"angular-split/*": ["dist/angular-split/*"]
},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"strictTemplates": true
}
}