forked from taiga-family/taiga-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
91 lines (91 loc) · 3.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"compileOnSave": false,
"include": ["projects/**/*"],
"exclude": ["projects/**/*.spec.ts", "projects/demo-integrations", "**/schematics/**/*"],
"angularCompilerOptions": {
"enableIvy": false,
"compilationMode": "full",
"preserveWhitespaces": false,
"annotateForClosureCompiler": false,
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"strictLiteralTypes": true,
"strictInputTypes": true,
"strictInputAccessModifiers": true,
"strictNullInputTypes": true,
"strictAttributeTypes": true,
"strictSafeNavigationTypes": true,
"strictDomLocalRefTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true,
"strictContextGenerics": true
},
"compilerOptions": {
"strict": true,
"baseUrl": "./",
"outDir": "./dist",
"target": "es2015",
"module": "esnext",
"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",
"paths": {
"@taiga-ui/cdk": ["projects/cdk/index"],
"@taiga-ui/cdk/*": ["projects/cdk/*"],
"@taiga-ui/testing": ["projects/testing/index"],
"@taiga-ui/testing/*": ["projects/testing/*"],
"@taiga-ui/icons": ["projects/icons/public-api"],
"@taiga-ui/core": ["projects/core/index"],
"@taiga-ui/core/*": ["projects/core/*"],
"@taiga-ui/kit": ["projects/kit/index"],
"@taiga-ui/kit/*": ["projects/kit/*"],
"@taiga-ui/i18n": ["projects/i18n/index"],
"@taiga-ui/i18n/*": ["projects/i18n/*"],
"@taiga-ui/addon-doc": ["projects/addon-doc/src/public-api"],
"@taiga-ui/addon-charts": ["projects/addon-charts/index"],
"@taiga-ui/addon-charts/*": ["projects/addon-charts/*"],
"@taiga-ui/addon-commerce": ["projects/addon-commerce/index"],
"@taiga-ui/addon-commerce/*": ["projects/addon-commerce/*"],
"@taiga-ui/addon-preview": ["projects/addon-preview/index"],
"@taiga-ui/addon-preview/*": ["projects/addon-preview/*"],
"@taiga-ui/addon-tablebars": ["projects/addon-tablebars/index"],
"@taiga-ui/addon-tablebars/*": ["projects/addon-tablebars/*"],
"@taiga-ui/addon-table": ["projects/addon-table/index"],
"@taiga-ui/addon-table/*": ["projects/addon-table/*"],
"@taiga-ui/addon-editor": ["projects/addon-editor/index"],
"@taiga-ui/addon-editor/*": ["projects/addon-editor/*"],
"@taiga-ui/addon-mobile": ["projects/addon-mobile/index"],
"@taiga-ui/addon-mobile/*": ["projects/addon-mobile/*"],
"@demo/emulate/change-detection": ["projects/demo/src/emulate/change-detection-strategy.ts"],
"@demo/emulate/encapsulation": ["projects/demo/src/emulate/view-encapsulation.ts"]
}
}
}