@powerlines/tsconfig 0.2.211 → 0.3.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.
package/monorepo.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "@storm-software/tsconfig/recommended.json",
4
+ "display": "Powerlines - Monorepo Configuration",
5
+ "compilerOptions": {
6
+ "target": "esnext",
7
+ "declaration": true,
8
+ "declarationMap": true,
9
+ "skipLibCheck": true,
10
+ "allowJs": true,
11
+ "lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
12
+ "module": "ESNext",
13
+ "moduleResolution": "Bundler",
14
+ "moduleDetection": "force",
15
+ "verbatimModuleSyntax": true,
16
+ "strict": true,
17
+ "noPropertyAccessFromIndexSignature": false,
18
+ "types": ["node"],
19
+ "resolveJsonModule": true
20
+ }
21
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/tsconfig",
3
- "version": "0.2.211",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "description": "A package containing shared TypeScript configuration files (tsconfig.json) used in Powerlines projects.",
6
6
  "repository": {
@@ -41,19 +41,17 @@
41
41
  "exports": {
42
42
  "./package.json": "./package.json",
43
43
  "./base.json": "./base.json",
44
- "./plugin.json": "./plugin.json",
45
- "./workspace.json": "./workspace.json",
44
+ "./monorepo.json": "./monorepo.json",
46
45
  "./recommended.json": "./recommended.json",
47
46
  "./deepkit.json": "./deepkit.json",
48
47
  "./strict.json": "./strict.json"
49
48
  },
50
49
  "files": [
51
50
  "./base.json",
52
- "./plugin.json",
53
51
  "./recommended.json",
54
52
  "./strict.json",
55
53
  "./deepkit.json",
56
- "./workspace.json"
54
+ "./monorepo.json"
57
55
  ],
58
56
  "keywords": ["powerlines", "storm-software", "typescript", "tsconfig"],
59
57
  "peerDependencies": { "@storm-software/tsconfig": "*" },
@@ -61,5 +59,5 @@
61
59
  "devDependencies": { "@storm-software/tsconfig": "^0.47.84" },
62
60
  "publishConfig": { "access": "public" },
63
61
  "sideEffects": false,
64
- "gitHead": "256020b11a6afd9decac143ca57eaba68d102906"
62
+ "gitHead": "eb3dbd19bd153aa5a988bce09a1cf05d985cb04b"
65
63
  }
package/plugin.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "extends": "@storm-software/tsconfig/base.json",
4
- "display": "Powerlines - Plugin Configuration",
5
- "compilerOptions": {
6
- "incremental": true,
7
- "composite": true,
8
- "target": "es2022",
9
- "jsx": "preserve",
10
- "jsxImportSource": "@alloy-js/core",
11
- "lib": ["es2023", "DOM"],
12
- "rootDir": "../..",
13
- "module": "NodeNext",
14
- "moduleResolution": "NodeNext",
15
- "strict": true,
16
- "declaration": true,
17
- "declarationMap": true,
18
- "outDir": "../../dist/out-tsc",
19
- "sourceMap": true,
20
- "isolatedModules": true,
21
- "skipLibCheck": true
22
- }
23
- }
package/workspace.json DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "$schema": "https://json.schemastore.org/tsconfig",
3
- "extends": "@storm-software/tsconfig/base.json",
4
- "display": "Powerlines - Workspace Configuration",
5
- "compilerOptions": {
6
- "baseUrl": ".",
7
- "rootDir": ".",
8
- "verbatimModuleSyntax": false,
9
- "strict": true,
10
- "noPropertyAccessFromIndexSignature": false
11
- }
12
- }