-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
64 lines (64 loc) · 2.14 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"compileOnSave": false,
"angularCompilerOptions": {
"enableIvy": true,
"preserveWhitespaces": false,
"annotateForClosureCompiler": false,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"strictLiteralTypes": true,
"strictInputTypes": true,
"strictInputAccessModifiers": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strictNullInputTypes": true,
"strictAttributeTypes": true,
"strictSafeNavigationTypes": true,
"strictDomLocalRefTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true,
"strictContextGenerics": true
},
"compilerOptions": {
"strict": true,
"baseUrl": "./",
"outDir": "./dist",
"target": "es2015",
"module": "es2020",
"lib": ["esnext", "dom"],
"typeRoots": ["node_modules/@types"],
"skipLibCheck": true,
"downlevelIteration": true,
"skipDefaultLibCheck": true,
"declaration": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"preserveConstEnums": true,
"importHelpers": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"noUnusedParameters": true,
"incremental": true,
"newLine": "lf",
"isolatedModules": false,
"alwaysStrict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noStrictGenericChecks": false,
"allowUmdGlobalAccess": true,
"useDefineForClassFields": false,
"forceConsistentCasingInFileNames": true,
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo",
"noImplicitOverride": true,
"paths": {
"@tinkoff/ng-dompurify": ["./projects/ng-dompurify/src/public-api"]
}
}
}