@xylabs/tsconfig 2.12.32 → 2.13.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/.tsconfig.build.cjs.json +30 -3
- package/.tsconfig.build.esm.json +31 -4
- package/package.json +2 -2
- package/tsconfig.json +2 -1
package/.tsconfig.build.cjs.json
CHANGED
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
+
"compileOnSave": false,
|
|
2
3
|
"compilerOptions": {
|
|
4
|
+
"rootDir": "./src",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"declarationMap": true,
|
|
7
|
+
"downlevelIteration": true,
|
|
8
|
+
"esModuleInterop": true,
|
|
9
|
+
"importHelpers": true,
|
|
10
|
+
"lib": [
|
|
11
|
+
"ESNEXT"
|
|
12
|
+
],
|
|
3
13
|
"module": "CommonJS",
|
|
4
|
-
"
|
|
5
|
-
"
|
|
14
|
+
"moduleResolution": "node",
|
|
15
|
+
"resolveJsonModule": true,
|
|
16
|
+
"skipDefaultLibCheck": true,
|
|
17
|
+
"skipLibCheck": true,
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"strict": true,
|
|
20
|
+
"target": "ES6",
|
|
21
|
+
"outDir": "./dist/cjs"
|
|
6
22
|
},
|
|
7
23
|
"exclude": [
|
|
24
|
+
".*",
|
|
25
|
+
"dist",
|
|
26
|
+
"node_modules",
|
|
27
|
+
"storybook-static",
|
|
28
|
+
"build",
|
|
8
29
|
"**/*.spec.*",
|
|
9
30
|
"**/*.spec",
|
|
10
31
|
"**/*.stories.*",
|
|
@@ -12,7 +33,13 @@
|
|
|
12
33
|
"**/spec/*",
|
|
13
34
|
"**/stories/*"
|
|
14
35
|
],
|
|
15
|
-
"
|
|
36
|
+
"ts-node": {
|
|
37
|
+
"compilerOptions": {
|
|
38
|
+
"module": "CommonJS"
|
|
39
|
+
},
|
|
40
|
+
"files": true,
|
|
41
|
+
"transpileOnly": true
|
|
42
|
+
},
|
|
16
43
|
"include": [
|
|
17
44
|
"src"
|
|
18
45
|
]
|
package/.tsconfig.build.esm.json
CHANGED
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
{
|
|
2
|
+
"compileOnSave": false,
|
|
2
3
|
"compilerOptions": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
4
|
+
"rootDir": "./src",
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"declarationMap": true,
|
|
7
|
+
"downlevelIteration": true,
|
|
8
|
+
"esModuleInterop": true,
|
|
9
|
+
"importHelpers": true,
|
|
10
|
+
"lib": [
|
|
11
|
+
"ESNEXT"
|
|
12
|
+
],
|
|
13
|
+
"module": "ESNext",
|
|
14
|
+
"moduleResolution": "node",
|
|
15
|
+
"resolveJsonModule": true,
|
|
16
|
+
"skipDefaultLibCheck": true,
|
|
17
|
+
"skipLibCheck": true,
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"strict": true,
|
|
20
|
+
"target": "ESNext",
|
|
21
|
+
"outDir": "./dist/esm"
|
|
6
22
|
},
|
|
7
23
|
"exclude": [
|
|
24
|
+
".*",
|
|
25
|
+
"dist",
|
|
26
|
+
"node_modules",
|
|
27
|
+
"storybook-static",
|
|
28
|
+
"build",
|
|
8
29
|
"**/*.spec.*",
|
|
9
30
|
"**/*.spec",
|
|
10
31
|
"**/*.stories.*",
|
|
@@ -12,7 +33,13 @@
|
|
|
12
33
|
"**/spec/*",
|
|
13
34
|
"**/stories/*"
|
|
14
35
|
],
|
|
15
|
-
"
|
|
36
|
+
"ts-node": {
|
|
37
|
+
"compilerOptions": {
|
|
38
|
+
"module": "CommonJS"
|
|
39
|
+
},
|
|
40
|
+
"files": true,
|
|
41
|
+
"transpileOnly": true
|
|
42
|
+
},
|
|
16
43
|
"include": [
|
|
17
44
|
"src"
|
|
18
45
|
]
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"typescript": "^4.9.5"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@xylabs/ts-scripts-yarn3": "^2.
|
|
18
|
+
"@xylabs/ts-scripts-yarn3": "^2.13.0"
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://github.com/xylabs/tsconfig.git",
|
|
21
21
|
"keywords": [
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"url": "https://github.com/xylabs/config.git"
|
|
36
36
|
},
|
|
37
37
|
"sideEffects": false,
|
|
38
|
-
"version": "2.
|
|
38
|
+
"version": "2.13.0"
|
|
39
39
|
}
|
package/tsconfig.json
CHANGED