@taiga-ui/tsconfig 0.445.0 → 0.447.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -9
- package/tsconfig.json +86 -82
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.447.0",
|
|
4
4
|
"description": "Taiga UI tsconfig",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"taiga-ui",
|
|
@@ -13,20 +13,20 @@
|
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"contributors": [
|
|
15
15
|
{
|
|
16
|
-
"
|
|
17
|
-
"
|
|
16
|
+
"email": "alexander@inkin.ru",
|
|
17
|
+
"name": "Alex Inkin"
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
|
-
"
|
|
21
|
-
"
|
|
20
|
+
"email": "splincodewd@yandex.ru",
|
|
21
|
+
"name": "Maksim Ivanov"
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
"
|
|
25
|
-
"
|
|
24
|
+
"email": "vladimir.potekh@gmail.com",
|
|
25
|
+
"name": "Vladimir Potekhin"
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
"
|
|
29
|
-
"
|
|
28
|
+
"email": "nikita.s.barsukov@gmail.com",
|
|
29
|
+
"name": "Nikita Barsukov"
|
|
30
30
|
}
|
|
31
31
|
],
|
|
32
32
|
"main": "tsconfig.json",
|
package/tsconfig.json
CHANGED
|
@@ -1,104 +1,108 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
3
3
|
"compileOnSave": false,
|
|
4
|
-
"angularCompilerOptions": {
|
|
5
|
-
"compilationMode": "partial",
|
|
6
|
-
"preserveWhitespaces": false,
|
|
7
|
-
"annotateForClosureCompiler": false,
|
|
8
|
-
"skipTemplateCodegen": true,
|
|
9
|
-
"strictMetadataEmit": true,
|
|
10
|
-
"fullTemplateTypeCheck": true,
|
|
11
|
-
"enableResourceInlining": true,
|
|
12
|
-
"strictTemplates": true,
|
|
13
|
-
"strictInjectionParameters": true,
|
|
14
|
-
"strictLiteralTypes": true,
|
|
15
|
-
"strictInputTypes": true,
|
|
16
|
-
"strictInputAccessModifiers": true,
|
|
17
|
-
"strictNullInputTypes": true,
|
|
18
|
-
"strictAttributeTypes": true,
|
|
19
|
-
"strictSafeNavigationTypes": true,
|
|
20
|
-
"strictDomLocalRefTypes": true,
|
|
21
|
-
"strictOutputEventTypes": true,
|
|
22
|
-
"strictDomEventTypes": true,
|
|
23
|
-
"strictContextGenerics": true,
|
|
24
|
-
"extendedDiagnostics": {
|
|
25
|
-
"defaultCategory": "error",
|
|
26
|
-
"checks": {
|
|
27
|
-
"optionalChainNotNullable": "error",
|
|
28
|
-
"nullishCoalescingNotNullable": "error",
|
|
29
|
-
"missingControlFlowDirective": "error",
|
|
30
|
-
"textAttributeNotBinding": "error",
|
|
31
|
-
"missingNgForOfLet": "error",
|
|
32
|
-
"invalidBananaInBox": "error",
|
|
33
|
-
"suffixNotSupported": "error",
|
|
34
|
-
"interpolatedSignalNotInvoked": "error",
|
|
35
|
-
"skipHydrationNotStatic": "error",
|
|
36
|
-
"unusedStandaloneImports": "error",
|
|
37
|
-
"uninvokedFunctionInEventBinding": "error",
|
|
38
|
-
"controlFlowPreventingContentProjection": "error"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
4
|
"compilerOptions": {
|
|
43
|
-
"strict": true,
|
|
44
5
|
"baseUrl": "./",
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"skipDefaultLibCheck": true,
|
|
6
|
+
"strict": true,
|
|
7
|
+
"allowJs": false,
|
|
8
|
+
"allowSyntheticDefaultImports": true,
|
|
9
|
+
"allowUmdGlobalAccess": true,
|
|
10
|
+
"allowUnreachableCode": false,
|
|
11
|
+
"allowUnusedLabels": false,
|
|
12
|
+
"alwaysStrict": true,
|
|
13
|
+
"checkJs": false,
|
|
54
14
|
"declaration": false,
|
|
55
15
|
"declarationMap": false,
|
|
56
|
-
"
|
|
57
|
-
"
|
|
16
|
+
"disableSizeLimit": true,
|
|
17
|
+
"downlevelIteration": true,
|
|
58
18
|
"esModuleInterop": true,
|
|
59
|
-
"
|
|
19
|
+
"forceConsistentCasingInFileNames": true,
|
|
60
20
|
"importHelpers": true,
|
|
21
|
+
"incremental": true,
|
|
22
|
+
"inlineSourceMap": false,
|
|
23
|
+
"inlineSources": false,
|
|
24
|
+
"isolatedModules": true,
|
|
25
|
+
"lib": [
|
|
26
|
+
"es2021",
|
|
27
|
+
"dom",
|
|
28
|
+
"dom.iterable"
|
|
29
|
+
],
|
|
30
|
+
"module": "esnext",
|
|
31
|
+
"moduleDetection": "force",
|
|
32
|
+
"moduleResolution": "node",
|
|
33
|
+
"noEmitHelpers": true,
|
|
34
|
+
"noEmitOnError": true,
|
|
61
35
|
"noFallthroughCasesInSwitch": true,
|
|
62
|
-
"
|
|
36
|
+
"noImplicitOverride": true,
|
|
63
37
|
"noImplicitReturns": true,
|
|
64
|
-
"
|
|
65
|
-
"alwaysStrict": true,
|
|
66
|
-
"allowUnreachableCode": false,
|
|
67
|
-
"allowUnusedLabels": false,
|
|
38
|
+
"noPropertyAccessFromIndexSignature": false,
|
|
68
39
|
"noStrictGenericChecks": false,
|
|
69
|
-
"allowUmdGlobalAccess": true,
|
|
70
|
-
"useDefineForClassFields": false,
|
|
71
|
-
"forceConsistentCasingInFileNames": true,
|
|
72
|
-
"noImplicitOverride": true,
|
|
73
|
-
"noEmitHelpers": true,
|
|
74
|
-
"pretty": true,
|
|
75
|
-
"stripInternal": false,
|
|
76
40
|
"noUncheckedIndexedAccess": true,
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"noEmitOnError": true,
|
|
81
|
-
"checkJs": false,
|
|
82
|
-
"allowJs": false,
|
|
83
|
-
"verbatimModuleSyntax": false,
|
|
84
|
-
"disableSizeLimit": true,
|
|
85
|
-
"strictNullChecks": true,
|
|
41
|
+
"noUnusedLocals": true,
|
|
42
|
+
"noUnusedParameters": true,
|
|
43
|
+
"outDir": "./dist",
|
|
86
44
|
"preserveSymlinks": true,
|
|
45
|
+
"pretty": true,
|
|
46
|
+
"removeComments": false,
|
|
47
|
+
"resolveJsonModule": true,
|
|
48
|
+
"skipDefaultLibCheck": true,
|
|
49
|
+
"skipLibCheck": true,
|
|
50
|
+
"sourceMap": true,
|
|
87
51
|
"strictBindCallApply": true,
|
|
88
52
|
"strictFunctionTypes": true,
|
|
53
|
+
"strictNullChecks": true,
|
|
89
54
|
"strictPropertyInitialization": true,
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
55
|
+
"stripInternal": false,
|
|
56
|
+
"target": "es2021",
|
|
57
|
+
"typeRoots": ["node_modules/@types"],
|
|
58
|
+
"types": ["node"],
|
|
59
|
+
"useDefineForClassFields": false,
|
|
60
|
+
"verbatimModuleSyntax": false
|
|
61
|
+
},
|
|
62
|
+
"angularCompilerOptions": {
|
|
63
|
+
"annotateForClosureCompiler": false,
|
|
64
|
+
"compilationMode": "partial",
|
|
65
|
+
"enableResourceInlining": true,
|
|
66
|
+
"extendedDiagnostics": {
|
|
67
|
+
"checks": {
|
|
68
|
+
"controlFlowPreventingContentProjection": "error",
|
|
69
|
+
"interpolatedSignalNotInvoked": "error",
|
|
70
|
+
"invalidBananaInBox": "error",
|
|
71
|
+
"missingControlFlowDirective": "error",
|
|
72
|
+
"missingNgForOfLet": "error",
|
|
73
|
+
"nullishCoalescingNotNullable": "error",
|
|
74
|
+
"optionalChainNotNullable": "error",
|
|
75
|
+
"skipHydrationNotStatic": "error",
|
|
76
|
+
"suffixNotSupported": "error",
|
|
77
|
+
"textAttributeNotBinding": "error",
|
|
78
|
+
"uninvokedFunctionInEventBinding": "error",
|
|
79
|
+
"unusedStandaloneImports": "error"
|
|
80
|
+
},
|
|
81
|
+
"defaultCategory": "error"
|
|
82
|
+
},
|
|
83
|
+
"fullTemplateTypeCheck": true,
|
|
84
|
+
"preserveWhitespaces": false,
|
|
85
|
+
"skipTemplateCodegen": true,
|
|
86
|
+
"strictAttributeTypes": true,
|
|
87
|
+
"strictContextGenerics": true,
|
|
88
|
+
"strictDomEventTypes": true,
|
|
89
|
+
"strictDomLocalRefTypes": true,
|
|
90
|
+
"strictInjectionParameters": true,
|
|
91
|
+
"strictInputAccessModifiers": true,
|
|
92
|
+
"strictInputTypes": true,
|
|
93
|
+
"strictLiteralTypes": true,
|
|
94
|
+
"strictMetadataEmit": true,
|
|
95
|
+
"strictNullInputTypes": true,
|
|
96
|
+
"strictOutputEventTypes": true,
|
|
97
|
+
"strictSafeNavigationTypes": true,
|
|
98
|
+
"strictTemplates": true
|
|
95
99
|
},
|
|
96
100
|
"ts-node": {
|
|
97
|
-
"files": true,
|
|
98
|
-
"transpileOnly": true,
|
|
99
101
|
"compilerOptions": {
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
}
|
|
102
|
+
"module": "commonjs",
|
|
103
|
+
"types": ["node"]
|
|
104
|
+
},
|
|
105
|
+
"files": true,
|
|
106
|
+
"transpileOnly": true
|
|
103
107
|
}
|
|
104
108
|
}
|