tsconfig-voss 1.0.19 → 1.0.21

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,13 +1,13 @@
1
1
  {
2
2
  "name": "tsconfig-voss",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "description": "Shared TypeScript configs",
5
5
  "exports": {
6
6
  "./base": "./tsconfig.base.json",
7
7
  "./common": "./tsconfig.common.json",
8
8
  "./back-end": "./back-end/tsconfig.json",
9
9
  "./back-end-dev": "./tsconfig.back-end.json",
10
- "./back-end-prod": "./tsconfig.back-end.prod.json",
10
+ "./back-end-build": "./tsconfig.back-end.build.json",
11
11
  "./front-end-base": "./tsconfig.front-end.base.json",
12
12
  "./front-end-dev": "./tsconfig.front-end.dev.json"
13
13
  },
@@ -15,7 +15,7 @@
15
15
  "tsconfig.base.json",
16
16
  "tsconfig.common.json",
17
17
  "tsconfig.back-end.json",
18
- "tsconfig.back-end.prod.json",
18
+ "tsconfig.back-end.build.json",
19
19
  "tsconfig.front-end.base.json",
20
20
  "tsconfig.front-end.dev.json",
21
21
  "back-end/tsconfig.json"
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "./tsconfig.back-end.json",
3
+ "compilerOptions": {
4
+ "allowImportingTsExtensions": false,
5
+ "module": "Node16",
6
+ "noEmit": false
7
+ }
8
+ }
@@ -9,7 +9,11 @@
9
9
  "allowSyntheticDefaultImports": true,
10
10
  "resolveJsonModule": true,
11
11
  "isolatedModules": true,
12
- "types": []
12
+ "types": [],
13
+
14
+ "composite": true,
15
+ "declaration": true,
16
+ "emitDeclarationOnly": false // Ensures only .d.ts files are generated
13
17
  },
14
18
  "include": ["src"]
15
19
  }
@@ -1,17 +0,0 @@
1
- {
2
- "extends": "./tsconfig.base.json",
3
- "compilerOptions": {
4
- "target": "ES2020",
5
- "module": "ESNext",
6
- "moduleResolution": "Node",
7
- "outDir": "./dist",
8
- "rootDir": "./src",
9
- "esModuleInterop": true,
10
- "allowSyntheticDefaultImports": true,
11
- "declaration": true,
12
- "declarationMap": true,
13
- "sourceMap": true,
14
- "allowImportingTsExtensions": false
15
- },
16
- "include": ["src"]
17
- }