@storm-software/tsconfig 0.38.2 → 0.39.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/CHANGELOG.md +24 -0
- package/README.md +1 -1
- package/index.js +25 -0
- package/meta.json +34 -0
- package/package.json +5 -11
- package/project.json +0 -46
- package/tsconfig.json +0 -8
- /package/{src/app.json → app.json} +0 -0
- /package/{src/base.json → base.json} +0 -0
- /package/{src/bun.json → bun.json} +0 -0
- /package/{src/core.json → core.json} +0 -0
- /package/{src/dom-app.json → dom-app.json} +0 -0
- /package/{src/dom-library.json → dom-library.json} +0 -0
- /package/{src/index.ts → index.ts} +0 -0
- /package/{src/library.json → library.json} +0 -0
- /package/{src/next.json → next.json} +0 -0
- /package/{src/react-native.json → react-native.json} +0 -0
- /package/{src/react.json → react.json} +0 -0
- /package/{src/reset.d.ts → reset.d.ts} +0 -0
- /package/{src/script.json → script.json} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,30 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Tsconfig
|
|
4
4
|
|
|
5
|
+
## [0.39.1](https://github.com/storm-software/storm-ops/releases/tag/tsconfig%400.39.1) (2025-05-06)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **eslint:** Regenerate type definitions
|
|
10
|
+
([aa082a323](https://github.com/storm-software/storm-ops/commit/aa082a323))
|
|
11
|
+
- **monorepo:** Regenerate README markdown files
|
|
12
|
+
([ed5072712](https://github.com/storm-software/storm-ops/commit/ed5072712))
|
|
13
|
+
|
|
14
|
+
## [0.39.0](https://github.com/storm-software/storm-ops/releases/tag/tsconfig%400.39.0) (2025-05-06)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **workspace-tools:** Update the release executor to replace workspace
|
|
19
|
+
configurations
|
|
20
|
+
([7d2aa456c](https://github.com/storm-software/storm-ops/commit/7d2aa456c))
|
|
21
|
+
|
|
22
|
+
### Miscellaneous
|
|
23
|
+
|
|
24
|
+
- **monorepo:** Regenerate README markdown files
|
|
25
|
+
([96f241a4d](https://github.com/storm-software/storm-ops/commit/96f241a4d))
|
|
26
|
+
- **monorepo:** Regenerate README markdown files
|
|
27
|
+
([17bbe7e16](https://github.com/storm-software/storm-ops/commit/17bbe7e16))
|
|
28
|
+
|
|
5
29
|
## [0.38.2](https://github.com/storm-software/storm-ops/releases/tag/tsconfig%400.38.2) (2025-05-06)
|
|
6
30
|
|
|
7
31
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/index.js
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// packages/tsconfig/src/index.ts
|
|
2
|
+
var baseTsConfigJson = "./base.json";
|
|
3
|
+
var bunTsConfigJson = "./bun.json";
|
|
4
|
+
var nextTsConfigJson = "./next.json";
|
|
5
|
+
var reactTsConfigJson = "./react.json";
|
|
6
|
+
var reactNativeTsConfigJson = "./react-native.json";
|
|
7
|
+
var scriptTsConfigJson = "./script.json";
|
|
8
|
+
var appTsConfigJson = "./app.json";
|
|
9
|
+
var coreTsConfigJson = "./core.json";
|
|
10
|
+
var libraryTsConfigJson = "./library.json";
|
|
11
|
+
var domLibraryTsConfigJson = "./dom-library.json";
|
|
12
|
+
var domAppTsConfigJson = "./dom-app.json";
|
|
13
|
+
export {
|
|
14
|
+
appTsConfigJson,
|
|
15
|
+
baseTsConfigJson,
|
|
16
|
+
bunTsConfigJson,
|
|
17
|
+
coreTsConfigJson,
|
|
18
|
+
domAppTsConfigJson,
|
|
19
|
+
domLibraryTsConfigJson,
|
|
20
|
+
libraryTsConfigJson,
|
|
21
|
+
nextTsConfigJson,
|
|
22
|
+
reactNativeTsConfigJson,
|
|
23
|
+
reactTsConfigJson,
|
|
24
|
+
scriptTsConfigJson
|
|
25
|
+
};
|
package/meta.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"inputs": {
|
|
3
|
+
"packages/tsconfig/src/index.ts": {
|
|
4
|
+
"bytes": 558,
|
|
5
|
+
"imports": [],
|
|
6
|
+
"format": "esm"
|
|
7
|
+
}
|
|
8
|
+
},
|
|
9
|
+
"outputs": {
|
|
10
|
+
"dist/packages/tsconfig/index.js": {
|
|
11
|
+
"imports": [],
|
|
12
|
+
"exports": [
|
|
13
|
+
"appTsConfigJson",
|
|
14
|
+
"baseTsConfigJson",
|
|
15
|
+
"bunTsConfigJson",
|
|
16
|
+
"coreTsConfigJson",
|
|
17
|
+
"domAppTsConfigJson",
|
|
18
|
+
"domLibraryTsConfigJson",
|
|
19
|
+
"libraryTsConfigJson",
|
|
20
|
+
"nextTsConfigJson",
|
|
21
|
+
"reactNativeTsConfigJson",
|
|
22
|
+
"reactTsConfigJson",
|
|
23
|
+
"scriptTsConfigJson"
|
|
24
|
+
],
|
|
25
|
+
"entryPoint": "packages/tsconfig/src/index.ts",
|
|
26
|
+
"inputs": {
|
|
27
|
+
"packages/tsconfig/src/index.ts": {
|
|
28
|
+
"bytesInOutput": 459
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"bytes": 743
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.39.1",
|
|
4
4
|
"description": "A comprehensive package containing shared TypeScript configuration files for various Storm Software projects.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
|
@@ -25,13 +25,7 @@
|
|
|
25
25
|
"stormstack",
|
|
26
26
|
"sullivanpj"
|
|
27
27
|
],
|
|
28
|
-
"dependencies": {
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
"@types/node": "^22.10.2"
|
|
33
|
-
},
|
|
34
|
-
"publishConfig": {
|
|
35
|
-
"access": "public"
|
|
36
|
-
}
|
|
37
|
-
}
|
|
28
|
+
"dependencies": { "@total-typescript/ts-reset": "0.5.1" },
|
|
29
|
+
"devDependencies": { "@types/node": "^22.10.2" },
|
|
30
|
+
"publishConfig": { "access": "public" }
|
|
31
|
+
}
|
package/project.json
DELETED
|
@@ -1,46 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "tsconfig",
|
|
3
|
-
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
|
-
"sourceRoot": "packages/tsconfig/src",
|
|
5
|
-
"projectType": "library",
|
|
6
|
-
"targets": {
|
|
7
|
-
"build": {
|
|
8
|
-
"cache": true,
|
|
9
|
-
"executor": "@nx/esbuild:esbuild",
|
|
10
|
-
"outputs": ["{options.outputPath}"],
|
|
11
|
-
"options": {
|
|
12
|
-
"outputPath": "dist/packages/tsconfig",
|
|
13
|
-
"tsConfig": "packages/tsconfig/tsconfig.json",
|
|
14
|
-
"project": "packages/tsconfig/package.json",
|
|
15
|
-
"main": "packages/tsconfig/src/index.ts",
|
|
16
|
-
"platform": "node",
|
|
17
|
-
"deleteOutputPath": true,
|
|
18
|
-
"bundle": true,
|
|
19
|
-
"thirdParty": true,
|
|
20
|
-
"skipTypeCheck": false,
|
|
21
|
-
"metafile": true,
|
|
22
|
-
"minify": false,
|
|
23
|
-
"assets": [
|
|
24
|
-
{
|
|
25
|
-
"input": "./packages/tsconfig",
|
|
26
|
-
"glob": "*.md",
|
|
27
|
-
"output": "/"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"input": "",
|
|
31
|
-
"glob": "LICENSE",
|
|
32
|
-
"output": "/"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"input": "./packages/tsconfig/src",
|
|
36
|
-
"glob": "{*.json,*.ts}",
|
|
37
|
-
"output": "."
|
|
38
|
-
}
|
|
39
|
-
]
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
"nx-release-publish": {
|
|
43
|
-
"executor": "@storm-software/workspace-tools:npm-publish"
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}
|
package/tsconfig.json
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|