@theholocron/tsconfig 5.2.0 → 6.0.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.
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Holocron Node LTS (ESM, nodenext)",
4
+
5
+ "compilerOptions": {
6
+ "lib": ["es2024", "ESNext.Array", "ESNext.Collection", "ESNext.Iterator", "ESNext.Promise"],
7
+ "module": "nodenext",
8
+ "moduleResolution": "nodenext",
9
+ "target": "es2024",
10
+ "strict": true,
11
+ "esModuleInterop": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "isolatedModules": true,
14
+ "resolveJsonModule": true,
15
+ "skipLibCheck": true
16
+ }
17
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/tsconfig",
3
- "version": "5.2.0",
3
+ "version": "6.0.0",
4
4
  "description": "TypeScript base configurations for theholocron projects.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/tsconfig#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",
@@ -12,15 +12,11 @@
12
12
  "author": "Newton Koumantzelis",
13
13
  "exports": {
14
14
  "./nextjs": "./nextjs/tsconfig.json",
15
- "./node-next": "./node-next/tsconfig.json",
16
- "./node18": "./node18/tsconfig.json",
17
- "./node14": "./node14/tsconfig.json"
15
+ "./node-lts": "./node-lts/tsconfig.json"
18
16
  },
19
17
  "files": [
20
18
  "nextjs/tsconfig.json",
21
- "node-next/tsconfig.json",
22
- "node14/tsconfig.json",
23
- "node18/tsconfig.json"
19
+ "node-lts/tsconfig.json"
24
20
  ],
25
21
  "peerDependencies": {
26
22
  "typescript": "^5"
@@ -1,29 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Node Next",
4
-
5
- "compilerOptions": {
6
- "allowJs": false,
7
- "allowSyntheticDefaultImports": true,
8
- "baseUrl": "./",
9
- "esModuleInterop": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "isolatedModules": true,
12
- "incremental": true,
13
- "lib": ["esnext"],
14
- "module": "esnext",
15
- "moduleResolution": "node",
16
- "noEmit": true,
17
- "outDir": "./dist",
18
- "paths": {
19
- "@/package": ["./package.json"],
20
- "@/*": ["./src/*"]
21
- },
22
- "resolveJsonModule": true,
23
- "skipLibCheck": true,
24
- "strict": true,
25
- "target": "ESNext"
26
- },
27
- "include": ["**/*.ts"],
28
- "exclude": ["node_modules"]
29
- }
@@ -1,15 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Node 14",
4
-
5
- "compilerOptions": {
6
- "target": "es2020",
7
- "lib": [ "es2020" ],
8
- "skipLibCheck": true,
9
- "strict": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "esModuleInterop": true,
12
- "module": "commonjs",
13
- "moduleResolution": "node"
14
- }
15
- }
@@ -1,15 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "Node 18",
4
-
5
- "compilerOptions": {
6
- "target": "es2022",
7
- "lib": ["es2022"],
8
- "skipLibCheck": true,
9
- "strict": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "esModuleInterop": true,
12
- "module": "commonjs",
13
- "moduleResolution": "node"
14
- }
15
- }