@powerlines/tsconfig 0.1.24 → 0.2.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/deepkit.json +12 -0
- package/package.json +4 -2
- package/plugin.json +1 -1
- package/recommended.json +3 -5
- package/strict.json +1 -1
- package/workspace.json +1 -1
package/deepkit.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"extends": "./base.json",
|
|
4
|
+
"display": "Powerlines - Deepkit Configuration",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"verbatimModuleSyntax": false,
|
|
7
|
+
"strict": true,
|
|
8
|
+
"noPropertyAccessFromIndexSignature": false
|
|
9
|
+
},
|
|
10
|
+
"reflection": true,
|
|
11
|
+
"reflectionLevel": "minimal"
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing shared TypeScript configuration files (tsconfig.json) used in Powerlines projects.",
|
|
6
6
|
"repository": {
|
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
"./plugin.json": "./plugin.json",
|
|
45
45
|
"./workspace.json": "./workspace.json",
|
|
46
46
|
"./recommended.json": "./recommended.json",
|
|
47
|
+
"./deepkit.json": "./deepkit.json",
|
|
47
48
|
"./strict.json": "./strict.json"
|
|
48
49
|
},
|
|
49
50
|
"files": [
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"./plugin.json",
|
|
52
53
|
"./recommended.json",
|
|
53
54
|
"./strict.json",
|
|
55
|
+
"./deepkit.json",
|
|
54
56
|
"./workspace.json"
|
|
55
57
|
],
|
|
56
58
|
"keywords": ["powerlines", "storm-software", "typescript", "tsconfig"],
|
|
@@ -59,5 +61,5 @@
|
|
|
59
61
|
"devDependencies": { "@storm-software/tsconfig": "^0.47.48" },
|
|
60
62
|
"publishConfig": { "access": "public" },
|
|
61
63
|
"sideEffects": false,
|
|
62
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "424d900c34fbbdf943895648419a6467d8eb4a8d"
|
|
63
65
|
}
|
package/plugin.json
CHANGED
package/recommended.json
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
-
"extends": "
|
|
3
|
+
"extends": "./base.json",
|
|
4
4
|
"display": "Powerlines - Recommended Configuration",
|
|
5
5
|
"compilerOptions": {
|
|
6
|
-
"verbatimModuleSyntax":
|
|
6
|
+
"verbatimModuleSyntax": true,
|
|
7
7
|
"strict": true,
|
|
8
8
|
"noPropertyAccessFromIndexSignature": false
|
|
9
|
-
}
|
|
10
|
-
"reflection": true,
|
|
11
|
-
"reflectionLevel": "minimal"
|
|
9
|
+
}
|
|
12
10
|
}
|
package/strict.json
CHANGED