tsconfig-voss 1.0.24 → 1.0.26
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 +1 -1
- package/tsconfig.back-end.json +1 -0
- package/tsconfig.common.json +11 -10
package/package.json
CHANGED
package/tsconfig.back-end.json
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
"allowImportingTsExtensions": true,
|
5
5
|
"allowSyntheticDefaultImports": true,
|
6
6
|
"esModuleInterop": true,
|
7
|
+
"isolatedModules": false, // 👈 Explicitly turn off
|
7
8
|
"lib": ["ESNext", "DOM"], // ✅ needed if you had it before,
|
8
9
|
"module": "nodenext", // ✅ must match old,
|
9
10
|
"moduleResolution": "nodenext", // ✅ must match old,
|
package/tsconfig.common.json
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
{
|
2
2
|
"extends": "./tsconfig.base.json",
|
3
3
|
"compilerOptions": {
|
4
|
-
"target": "ES2020",
|
5
|
-
"module": "ESNext",
|
6
|
-
"moduleResolution": "Node",
|
7
|
-
"noEmit": true,
|
8
|
-
"esModuleInterop": true,
|
9
4
|
"allowSyntheticDefaultImports": true,
|
10
|
-
"resolveJsonModule": true,
|
11
|
-
"isolatedModules": true,
|
12
|
-
"types": [],
|
13
|
-
|
14
5
|
"composite": true,
|
15
6
|
"declaration": true,
|
16
|
-
"
|
7
|
+
"declarationMap": true,
|
8
|
+
"emitDeclarationOnly": false, // Ensures only .d.ts files are generated,
|
9
|
+
"esModuleInterop": true,
|
10
|
+
"incremental": true,
|
11
|
+
"isolatedModules": true,
|
12
|
+
"module": "CommonJS",
|
13
|
+
"moduleResolution": "Node",
|
14
|
+
"noEmit": true,
|
15
|
+
"resolveJsonModule": true,
|
16
|
+
"target": "ES2020",
|
17
|
+
"types": []
|
17
18
|
},
|
18
19
|
"include": ["src"]
|
19
20
|
}
|