@vinicius1313/tsconfig 1.0.0 → 2.0.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 +23 -1
- package/tsconfig.json +136 -22
package/package.json
CHANGED
|
@@ -1,11 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vinicius1313/tsconfig",
|
|
3
3
|
"description": "TypeScript configuration",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "tsconfig.json",
|
|
7
7
|
"files": [
|
|
8
|
+
"README.md",
|
|
8
9
|
"tsconfig.json"
|
|
9
10
|
],
|
|
11
|
+
"author": "Vinicius Yoshioka <71671043+viniciusyoshioka@users.noreply.github.com> (https://github.com/viniciusyoshioka)",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/viniciusyoshioka/tsconfig.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/viniciusyoshioka/tsconfig/issues"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://github.com/viniciusyoshioka/tsconfig",
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"registry": "https://registry.npmjs.org/"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"TypeScript",
|
|
25
|
+
"TS",
|
|
26
|
+
"configuration",
|
|
27
|
+
"config",
|
|
28
|
+
"tsconfig",
|
|
29
|
+
"react",
|
|
30
|
+
"react-native"
|
|
31
|
+
],
|
|
10
32
|
"scripts": {}
|
|
11
33
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,29 +1,143 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
3
|
+
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
+
|
|
5
|
+
/* Projects */
|
|
6
|
+
"incremental": false,
|
|
7
|
+
// "composite": true,
|
|
8
|
+
// "tsBuildInfoFile": "./.tsbuildinfo",
|
|
9
|
+
// "disableSourceOfProjectReferenceRedirect": true,
|
|
10
|
+
// "disableSolutionSearching": true,
|
|
11
|
+
// "disableReferencedProjectLoad": true,
|
|
12
|
+
|
|
13
|
+
/* Language and Environment */
|
|
14
|
+
"target": "es2024",
|
|
10
15
|
"lib": [
|
|
11
|
-
"
|
|
16
|
+
"ES2024"
|
|
12
17
|
],
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
18
|
+
"jsx": "react-jsx",
|
|
19
|
+
"libReplacement": false,
|
|
20
|
+
"experimentalDecorators": true,
|
|
21
|
+
"emitDecoratorMetadata": true,
|
|
22
|
+
// "jsxFactory": "",
|
|
23
|
+
// "jsxFragmentFactory": "",
|
|
24
|
+
// "jsxImportSource": "",
|
|
25
|
+
// "reactNamespace": "",
|
|
26
|
+
// "noLib": true,
|
|
27
|
+
// "useDefineForClassFields": true,
|
|
28
|
+
// "moduleDetection": "auto",
|
|
29
|
+
|
|
30
|
+
/* Modules */
|
|
31
|
+
"module": "node18",
|
|
32
|
+
// "rootDir": ".",
|
|
33
|
+
"moduleResolution": "node16",
|
|
34
|
+
// "baseUrl": ".",
|
|
35
|
+
// "paths": {},
|
|
36
|
+
// "rootDirs": [],
|
|
37
|
+
// "typeRoots": [],
|
|
38
|
+
// "types": [],
|
|
39
|
+
// "allowUmdGlobalAccess": true,
|
|
40
|
+
// "moduleSuffixes": [],
|
|
41
|
+
// "allowImportingTsExtensions": true,
|
|
42
|
+
"rewriteRelativeImportExtensions": true,
|
|
43
|
+
// "resolvePackageJsonExports": true,
|
|
44
|
+
// "resolvePackageJsonImports": true,
|
|
45
|
+
// "customConditions": [],
|
|
46
|
+
"noUncheckedSideEffectImports": true,
|
|
23
47
|
"resolveJsonModule": true,
|
|
24
|
-
"
|
|
48
|
+
// "allowArbitraryExtensions": true,
|
|
49
|
+
// "noResolve": true,
|
|
50
|
+
|
|
51
|
+
/* JavaScript Support */
|
|
52
|
+
"allowJs": true,
|
|
53
|
+
// "checkJs": true,
|
|
54
|
+
// "maxNodeModuleJsDepth": 1,
|
|
55
|
+
|
|
56
|
+
/* Editor Support */
|
|
57
|
+
// "disableSizeLimit": true,
|
|
58
|
+
// "plugins": [],
|
|
59
|
+
|
|
60
|
+
/* Emit */
|
|
61
|
+
// "declaration": true,
|
|
62
|
+
// "declarationMap": true,
|
|
63
|
+
// "emitDeclarationOnly": true,
|
|
64
|
+
// "sourceMap": true,
|
|
65
|
+
// "inlineSourceMap": true,
|
|
66
|
+
// "noEmit": true,
|
|
67
|
+
// "outFile": ".",
|
|
68
|
+
"outDir": "./dist/module",
|
|
69
|
+
"removeComments": true,
|
|
70
|
+
"importHelpers": true,
|
|
71
|
+
"downlevelIteration": true,
|
|
72
|
+
// "sourceRoot": "",
|
|
73
|
+
// "mapRoot": "",
|
|
74
|
+
// "inlineSources": true,
|
|
75
|
+
// "emitBOM": true,
|
|
76
|
+
// "newLine": "crlf",
|
|
77
|
+
// "stripInternal": true,
|
|
78
|
+
// "noEmitHelpers": true,
|
|
79
|
+
// "noEmitOnError": true,
|
|
80
|
+
// "preserveConstEnums": true,
|
|
81
|
+
// "declarationDir": "./dist/types",
|
|
82
|
+
|
|
83
|
+
/* Interop Constraints */
|
|
84
|
+
"isolatedModules": true,
|
|
85
|
+
// "verbatimModuleSyntax": true,
|
|
86
|
+
// "isolatedDeclarations": true,
|
|
87
|
+
// "erasableSyntaxOnly": true,
|
|
88
|
+
"allowSyntheticDefaultImports": true,
|
|
89
|
+
"esModuleInterop": true,
|
|
90
|
+
"preserveSymlinks": true,
|
|
91
|
+
// "forceConsistentCasingInFileNames": true,
|
|
92
|
+
|
|
93
|
+
/* Type Checking */
|
|
25
94
|
"strict": true,
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
95
|
+
"noImplicitAny": true,
|
|
96
|
+
// "strictNullChecks": true,
|
|
97
|
+
// "strictFunctionTypes": true,
|
|
98
|
+
// "strictBindCallApply": true,
|
|
99
|
+
// "strictPropertyInitialization": true,
|
|
100
|
+
// "strictBuiltinIteratorReturn": true,
|
|
101
|
+
// "noImplicitThis": true,
|
|
102
|
+
// "useUnknownInCatchVariables": true,
|
|
103
|
+
// "alwaysStrict": true,
|
|
104
|
+
// "noUnusedLocals": true,
|
|
105
|
+
// "noUnusedParameters": true,
|
|
106
|
+
// "exactOptionalPropertyTypes": true,
|
|
107
|
+
"noImplicitReturns": true,
|
|
108
|
+
"noFallthroughCasesInSwitch": true,
|
|
109
|
+
// "noUncheckedIndexedAccess": true,
|
|
110
|
+
"noImplicitOverride": true,
|
|
111
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
112
|
+
// "allowUnusedLabels": true,
|
|
113
|
+
"allowUnreachableCode": true,
|
|
114
|
+
|
|
115
|
+
/* Backwards Compatibility */
|
|
116
|
+
// "noImplicitUseStrict": true,
|
|
117
|
+
// "noStrictGenericChecks": true,
|
|
118
|
+
// "suppressExcessPropertyErrors": true,
|
|
119
|
+
// "suppressImplicitAnyIndexErrors": true,
|
|
120
|
+
|
|
121
|
+
/* Compiler Diagnostics */
|
|
122
|
+
// "diagnostics": true,
|
|
123
|
+
// "extendedDiagnostics": true,
|
|
124
|
+
// "generateCpuProfile": "profile.cpuprofile",
|
|
125
|
+
// "listEmittedFiles": true,
|
|
126
|
+
// "listFiles": true,
|
|
127
|
+
// "listFilesOnly": true,
|
|
128
|
+
// "noCheck": true,
|
|
129
|
+
// "traceResolution": true,
|
|
130
|
+
|
|
131
|
+
/* Output Formatting */
|
|
132
|
+
// "noErrorTruncation": true,
|
|
133
|
+
// "preserveWatchOutput": true,
|
|
134
|
+
// "pretty": false,
|
|
135
|
+
|
|
136
|
+
/* Watch Options */
|
|
137
|
+
// "assumeChangesOnlyAffectDirectDependencies": true,
|
|
138
|
+
|
|
139
|
+
/* Completeness */
|
|
140
|
+
// "skipDefaultLibCheck": true,
|
|
141
|
+
"skipLibCheck": true
|
|
142
|
+
}
|
|
29
143
|
}
|