tsconfig-voss 1.0.21 → 1.0.23

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tsconfig-voss",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "Shared TypeScript configs",
5
5
  "exports": {
6
6
  "./base": "./tsconfig.base.json",
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "extends": "./tsconfig.back-end.json",
3
3
  "compilerOptions": {
4
- "allowImportingTsExtensions": false,
4
+ "declaration": true, // Enable declaration files,
5
+ "emitDeclarationOnly": true, // Emit only declaration files,
5
6
  "module": "Node16",
6
7
  "noEmit": false
7
8
  }
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "extends": "./tsconfig.base.json",
3
3
  "compilerOptions": {
4
- "target": "ES2022",
5
- "module": "nodenext", // ✅ must match old
6
- "moduleResolution": "nodenext", // ✅ must match old
7
4
  "allowImportingTsExtensions": true,
8
- "esModuleInterop": true,
9
5
  "allowSyntheticDefaultImports": true,
6
+ "esModuleInterop": true,
7
+ "lib": ["ESNext", "DOM"] // ✅ needed if you had it before,
8
+ "module": "nodenext", // ✅ must match old,
9
+ "moduleResolution": "nodenext", // ✅ must match old,
10
10
  "skipLibCheck": true,
11
- "types": ["node"],
12
- "lib": ["ESNext", "DOM"] // ✅ needed if you had it before
11
+ "target": "ES2022",
12
+ "types": ["node"]
13
13
  }
14
14
  }