@4mbl/tsconfig 2.0.0 → 2.0.1
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/base/2.0.1.json +40 -0
- package/base/latest.json +3 -3
- package/browser/2.0.1.json +15 -0
- package/browser/latest.json +2 -2
- package/node/2.0.1.json +11 -0
- package/node/latest.json +2 -2
- package/package.json +1 -1
package/base/2.0.1.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Base",
|
|
4
|
+
"_version": "2.0.1",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
/* Base Options */
|
|
7
|
+
"lib": ["ESNext"],
|
|
8
|
+
"allowJs": true,
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"resolveJsonModule": true,
|
|
11
|
+
"moduleDetection": "force",
|
|
12
|
+
"rootDir": "${configDir}/src",
|
|
13
|
+
"baseUrl": "${configDir}/",
|
|
14
|
+
"paths": {
|
|
15
|
+
"@/*": ["${configDir}/src/*"]
|
|
16
|
+
},
|
|
17
|
+
|
|
18
|
+
/* Output */
|
|
19
|
+
"target": "ES6",
|
|
20
|
+
"outDir": "${configDir}/dist",
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
"declaration": true,
|
|
23
|
+
"incremental": true,
|
|
24
|
+
"isolatedModules": true,
|
|
25
|
+
"esModuleInterop": true,
|
|
26
|
+
|
|
27
|
+
/* Linting */
|
|
28
|
+
"strict": true,
|
|
29
|
+
"checkJs": true,
|
|
30
|
+
"forceConsistentCasingInFileNames": true,
|
|
31
|
+
"noFallthroughCasesInSwitch": true,
|
|
32
|
+
"noImplicitAny": true,
|
|
33
|
+
"noImplicitReturns": false,
|
|
34
|
+
"noUnusedLocals": true,
|
|
35
|
+
"noUnusedParameters": true,
|
|
36
|
+
"noUncheckedIndexedAccess": true
|
|
37
|
+
},
|
|
38
|
+
"include": ["${configDir}/src/**/*"],
|
|
39
|
+
"exclude": ["${configDir}/node_modules"]
|
|
40
|
+
}
|
package/base/latest.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"display": "Base",
|
|
4
|
-
"_version": "2.0.
|
|
4
|
+
"_version": "2.0.1",
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
/* Base Options */
|
|
7
7
|
"lib": ["ESNext"],
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"skipLibCheck": true,
|
|
10
10
|
"resolveJsonModule": true,
|
|
11
11
|
"moduleDetection": "force",
|
|
12
|
-
"rootDir": "${configDir}/",
|
|
12
|
+
"rootDir": "${configDir}/src",
|
|
13
13
|
"baseUrl": "${configDir}/",
|
|
14
14
|
"paths": {
|
|
15
15
|
"@/*": ["${configDir}/src/*"]
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
/* Output */
|
|
19
19
|
"target": "ES6",
|
|
20
|
-
"outDir": "dist",
|
|
20
|
+
"outDir": "${configDir}/dist",
|
|
21
21
|
"sourceMap": true,
|
|
22
22
|
"declaration": true,
|
|
23
23
|
"incremental": true,
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Browser",
|
|
4
|
+
"_version": "2.0.1",
|
|
5
|
+
"extends": "../base/2.0.1.json",
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
8
|
+
"jsx": "react-jsx",
|
|
9
|
+
"tsBuildInfoFile": "tsconfig.browser.tsbuildinfo",
|
|
10
|
+
"module": "ESNext",
|
|
11
|
+
"moduleResolution": "Bundler",
|
|
12
|
+
"noEmit": true,
|
|
13
|
+
"sourceMap": true
|
|
14
|
+
}
|
|
15
|
+
}
|
package/browser/latest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"display": "Browser",
|
|
4
|
-
"_version": "2.0.
|
|
5
|
-
"extends": "../base/2.0.
|
|
4
|
+
"_version": "2.0.1",
|
|
5
|
+
"extends": "../base/2.0.1.json",
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
8
8
|
"jsx": "react-jsx",
|
package/node/2.0.1.json
ADDED
package/node/latest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"display": "Node",
|
|
4
|
-
"_version": "2.0.
|
|
5
|
-
"extends": "../base/2.0.
|
|
4
|
+
"_version": "2.0.1",
|
|
5
|
+
"extends": "../base/2.0.1.json",
|
|
6
6
|
"compilerOptions": {
|
|
7
7
|
"target": "ESNext",
|
|
8
8
|
"moduleResolution": "NodeNext",
|