@xylabs/tsconfig 2.12.33 → 2.13.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/.tsconfig.build.cjs.json +33 -3
- package/.tsconfig.build.esm.json +34 -4
- package/package.json +2 -2
- package/tsconfig.json +2 -1
package/.tsconfig.build.cjs.json
CHANGED
|
@@ -1,10 +1,34 @@
|
|
|
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",
|
|
29
|
+
"**/build",
|
|
30
|
+
"**/dist",
|
|
31
|
+
"**/node_modules",
|
|
8
32
|
"**/*.spec.*",
|
|
9
33
|
"**/*.spec",
|
|
10
34
|
"**/*.stories.*",
|
|
@@ -12,7 +36,13 @@
|
|
|
12
36
|
"**/spec/*",
|
|
13
37
|
"**/stories/*"
|
|
14
38
|
],
|
|
15
|
-
"
|
|
39
|
+
"ts-node": {
|
|
40
|
+
"compilerOptions": {
|
|
41
|
+
"module": "CommonJS"
|
|
42
|
+
},
|
|
43
|
+
"files": true,
|
|
44
|
+
"transpileOnly": true
|
|
45
|
+
},
|
|
16
46
|
"include": [
|
|
17
47
|
"src"
|
|
18
48
|
]
|
package/.tsconfig.build.esm.json
CHANGED
|
@@ -1,10 +1,34 @@
|
|
|
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",
|
|
29
|
+
"**/build",
|
|
30
|
+
"**/dist",
|
|
31
|
+
"**/node_modules",
|
|
8
32
|
"**/*.spec.*",
|
|
9
33
|
"**/*.spec",
|
|
10
34
|
"**/*.stories.*",
|
|
@@ -12,7 +36,13 @@
|
|
|
12
36
|
"**/spec/*",
|
|
13
37
|
"**/stories/*"
|
|
14
38
|
],
|
|
15
|
-
"
|
|
39
|
+
"ts-node": {
|
|
40
|
+
"compilerOptions": {
|
|
41
|
+
"module": "CommonJS"
|
|
42
|
+
},
|
|
43
|
+
"files": true,
|
|
44
|
+
"transpileOnly": true
|
|
45
|
+
},
|
|
16
46
|
"include": [
|
|
17
47
|
"src"
|
|
18
48
|
]
|
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.1"
|
|
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.1"
|
|
39
39
|
}
|
package/tsconfig.json
CHANGED