@jeromefitz/tsconfig 2.1.0 → 2.1.1-canary.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021-2023 Nice Group of People, LLC
3
+ Copyright (c) 2021-2026 Nice Group of People, LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/base.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig",
4
3
  "compilerOptions": {
5
4
  "allowJs": true,
6
5
  "composite": false,
@@ -20,5 +19,6 @@
20
19
  "skipLibCheck": true,
21
20
  "strict": true
22
21
  },
22
+ "display": "@jeromefitz/tsconfig",
23
23
  "exclude": ["node_modules"]
24
24
  }
package/jest.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-jest",
4
3
  "compilerOptions": {
5
4
  "baseUrl": "./",
6
5
  "rootDir": "./"
7
6
  },
7
+ "display": "@jeromefitz/tsconfig-jest",
8
8
  "include": ["**/*.test.*", "__tests__/*"]
9
9
  }
package/next.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-next",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "allowJs": true,
7
5
  "esModuleInterop": true,
@@ -18,6 +16,8 @@
18
16
  "strict": false,
19
17
  "target": "es5"
20
18
  },
21
- "include": ["src", "next-env.d.ts"],
22
- "exclude": ["node_modules"]
19
+ "display": "@jeromefitz/tsconfig-next",
20
+ "exclude": ["node_modules"],
21
+ "extends": "./base.json",
22
+ "include": ["src", "next-env.d.ts"]
23
23
  }
package/node14.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-node-14",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
4
+ "esModuleInterop": true,
5
+ "forceConsistentCasingInFileNames": true,
6
6
  "lib": ["es2020"],
7
7
  "module": "commonjs",
8
- "target": "es2020",
9
- "strict": true,
10
- "esModuleInterop": true,
11
8
  "skipLibCheck": true,
12
- "forceConsistentCasingInFileNames": true
13
- }
9
+ "strict": true,
10
+ "target": "es2020"
11
+ },
12
+ "display": "@jeromefitz/tsconfig-node-14",
13
+ "extends": "./base.json"
14
14
  }
package/node16.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-node-16",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "esModuleInterop": true,
7
5
  "forceConsistentCasingInFileNames": true,
@@ -11,5 +9,7 @@
11
9
  "skipLibCheck": true,
12
10
  "strict": true,
13
11
  "target": "ES2022"
14
- }
12
+ },
13
+ "display": "@jeromefitz/tsconfig-node-16",
14
+ "extends": "./base.json"
15
15
  }
package/node20.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-node-20",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "esModuleInterop": true,
7
5
  "forceConsistentCasingInFileNames": true,
@@ -11,5 +9,7 @@
11
9
  "skipLibCheck": true,
12
10
  "strict": true,
13
11
  "target": "ESNext"
14
- }
12
+ },
13
+ "display": "@jeromefitz/tsconfig-node-20",
14
+ "extends": "./base.json"
15
15
  }
package/node22.json CHANGED
@@ -1,7 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-node-22",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
6
4
  "esModuleInterop": true,
7
5
  "forceConsistentCasingInFileNames": true,
@@ -11,5 +9,7 @@
11
9
  "skipLibCheck": true,
12
10
  "strict": true,
13
11
  "target": "ESNext"
14
- }
12
+ },
13
+ "display": "@jeromefitz/tsconfig-node-22",
14
+ "extends": "./base.json"
15
15
  }
package/node24.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "allowImportingTsExtensions": true,
5
+ "emitDeclarationOnly": true,
6
+ "esModuleInterop": true,
7
+ "forceConsistentCasingInFileNames": true,
8
+ "lib": ["ESNext"],
9
+ "module": "NodeNext",
10
+ "skipLibCheck": true,
11
+ "strict": true,
12
+ "target": "ESNext"
13
+ },
14
+ "display": "@jeromefitz/tsconfig-node-24",
15
+ "extends": "./base.json"
16
+ }
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@jeromefitz/tsconfig",
3
- "version": "2.1.0",
3
+ "version": "2.1.1-canary.1",
4
4
  "type": "module",
5
5
  "description": "TypeScript Configuration",
6
- "repository": "jeromefitz/packages.git",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/JeromeFitz/packages"
9
+ },
7
10
  "author": {
8
11
  "name": "Jerome Fitzgerald",
9
12
  "email": "j@jeromefitzgerald.com",
@@ -12,22 +15,20 @@
12
15
  "license": "MIT",
13
16
  "private": false,
14
17
  "engines": {
15
- "node": ">=20"
18
+ "node": ">=24"
16
19
  },
17
20
  "scripts": {
18
21
  "build": "pnpm run clean && pnpm run copy",
19
22
  "clean": "rm -rf .turbo && rm -rf dist",
20
23
  "clean:install": "pnpm run clean && rm -rf node_modules",
21
24
  "copy": "mkdir -p ./dist && ./scripts/copy.sh",
22
- "dev": "echo '#tsup-node --watch'",
23
- "format:lint": "pnpm run format:prettier --write",
24
- "format:prettier": "prettier \"./src/**/*.{cjs,js,jsx,mjs,ts,tsx,json,md,mdx,css,html,yml,yaml,scss}\" --ignore-unknown --log-level warn",
25
- "lint": "pnpm run format:prettier --check",
25
+ "dev": "echo '#tsdown --watch'",
26
26
  "semantic-release": "semantic-release",
27
27
  "semantic-release:dry": "semantic-release --dry-run"
28
28
  },
29
29
  "publishConfig": {
30
- "registry": "https://registry.npmjs.org/"
30
+ "registry": "https://registry.npmjs.org/",
31
+ "provenance": true
31
32
  },
32
33
  "sideEffects": false
33
34
  }
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-react-library",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
4
+ "jsx": "react-jsx",
6
5
  "lib": ["dom", "ES2015"],
7
6
  "module": "ESNext",
8
- "target": "ES6",
9
- "jsx": "react-jsx"
10
- }
7
+ "target": "ES6"
8
+ },
9
+ "display": "@jeromefitz/tsconfig-react-library",
10
+ "extends": "./base.json"
11
11
  }
package/react-native.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/tsconfig-react-native",
4
3
  "compilerOptions": {
5
4
  "allowJs": true,
6
5
  "esModuleInterop": true,
@@ -17,5 +16,6 @@
17
16
  "strict": false,
18
17
  "target": "es5"
19
18
  },
19
+ "display": "@jeromefitz/tsconfig-react-native",
20
20
  "exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
21
21
  }
package/react.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/tsconfig",
3
- "display": "@jeromefitz/eslint-config/react",
4
- "extends": "./base.json",
5
3
  "compilerOptions": {
4
+ "jsx": "react",
6
5
  "lib": ["ES2015"],
7
6
  "module": "ESNext",
8
- "rootDir": "src",
9
7
  "outDir": "dist",
10
- "jsx": "react"
8
+ "rootDir": "src"
11
9
  },
12
- "include": ["src"],
13
- "exclude": ["node_modules"]
10
+ "display": "@jeromefitz/tsconfig/react",
11
+ "exclude": ["node_modules"],
12
+ "extends": "./base.json",
13
+ "include": ["src"]
14
14
  }