-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.base.json
44 lines (44 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"compileOnSave": false,
"exclude": ["node_modules", "**/*.spec.ts"],
"compilerOptions": {
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"useDefineForClassFields": false,
"baseUrl": ".",
"declaration": true,
"composite": true,
"lib": ["DOM", "ESNext"],
"importHelpers": true,
"newLine": "lf",
"noUnusedLocals": true,
"noUnusedParameters": true,
"typeRoots": ["node_modules/@types"],
"importsNotUsedAsValues": "preserve",
"ignoreDeprecations": "5.0",
"pretty": true,
"removeComments": true,
"sourceMap": true,
"module": "ES2022",
"target": "ES2022",
"moduleResolution": "Node",
"plugins": [
{
"name": "@angular/language-service"
}
],
"types": ["jest", "node", "hammerjs"],
"resolveJsonModule": true,
"disableSizeLimit": true,
"disableReferencedProjectLoad": true,
"disableSolutionSearching": true
},
"ts-node": {
"compilerOptions": {
"module": "commonjs",
"plugins": []
}
}
}