@storm-software/tsconfig 0.35.8 → 0.35.9
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/CHANGELOG.md +6 -0
- package/core.json +4 -2
- package/package.json +31 -1
package/CHANGELOG.md
CHANGED
package/core.json
CHANGED
|
@@ -5,14 +5,16 @@
|
|
|
5
5
|
"compilerOptions": {
|
|
6
6
|
/* Base Options: */
|
|
7
7
|
"allowJs": true,
|
|
8
|
-
"incremental": true,
|
|
9
8
|
"isolatedModules": true,
|
|
9
|
+
"incremental": false,
|
|
10
|
+
"composite": false,
|
|
11
|
+
"verbatimModuleSyntax": true,
|
|
12
|
+
|
|
10
13
|
/* If transpiling with TypeScript: */
|
|
11
14
|
"sourceMap": true,
|
|
12
15
|
/* AND if you're building for a library: */
|
|
13
16
|
"declaration": true,
|
|
14
17
|
/* AND if you're building for a library in a monorepo: */
|
|
15
|
-
"composite": true,
|
|
16
18
|
"declarationMap": true
|
|
17
19
|
}
|
|
18
20
|
}
|
package/package.json
CHANGED
|
@@ -1 +1,31 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "@storm-software/tsconfig",
|
|
3
|
+
"version": "0.35.9",
|
|
4
|
+
"description": "A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "github",
|
|
7
|
+
"url": "https://github.com/storm-software/storm-ops",
|
|
8
|
+
"directory": "packages/tsconfig"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://stormsoftware.com",
|
|
11
|
+
"bugs": "https://github.com/storm-software/storm-ops/issues",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Storm Software",
|
|
14
|
+
"email": "contact@stormsoftware.com",
|
|
15
|
+
"url": "https://stormsoftware.com"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0",
|
|
18
|
+
"private": false,
|
|
19
|
+
"keywords": [
|
|
20
|
+
"monorepo",
|
|
21
|
+
"open-system",
|
|
22
|
+
"storm",
|
|
23
|
+
"storm-ops",
|
|
24
|
+
"storm-stack",
|
|
25
|
+
"stormstack",
|
|
26
|
+
"sullivanpj"
|
|
27
|
+
],
|
|
28
|
+
"dependencies": { "@total-typescript/ts-reset": "0.5.1" },
|
|
29
|
+
"devDependencies": { "@types/node": "^22.10.2" },
|
|
30
|
+
"publishConfig": { "access": "public" }
|
|
31
|
+
}
|