@storm-software/tsconfig 0.5.0 β 0.10.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/CHANGELOG.md +35 -0
- package/README.md +3 -2
- package/bun.json +0 -4
- package/next.json +7 -1
- package/package.json +1 -1
- package/react-native.json +9 -1
- package/react.json +9 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## 0.10.0 (2024-06-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### π Features
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Upgrade the workspace pnpm-lock file ([d33c20cb](https://github.com/storm-software/storm-ops/commit/d33c20cb))
|
|
7
|
+
|
|
8
|
+
## 0.9.0 (2024-06-22)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### π Features
|
|
12
|
+
|
|
13
|
+
- **storm-ops:** Updated pnpm-lock file ([22be1efd](https://github.com/storm-software/storm-ops/commit/22be1efd))
|
|
14
|
+
|
|
15
|
+
## 0.8.0 (2024-06-22)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### π Features
|
|
19
|
+
|
|
20
|
+
- **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
|
|
21
|
+
|
|
22
|
+
## 0.7.0 (2024-06-21)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### π Features
|
|
26
|
+
|
|
27
|
+
- **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
|
|
28
|
+
|
|
29
|
+
## 0.6.0 (2024-06-17)
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### π Features
|
|
33
|
+
|
|
34
|
+
- **tsconfig:** Improve the Typescript configuration inheritance and linting ([b84c881f](https://github.com/storm-software/storm-ops/commit/b84c881f))
|
|
35
|
+
|
|
1
36
|
## 0.5.0 (2024-06-05)
|
|
2
37
|
|
|
3
38
|
|
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/)
|
|
25
25
|
[](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://docusaurus.io/) 
|
|
26
26
|
|
|
27
27
|
> [!IMPORTANT]
|
|
@@ -37,7 +37,8 @@ This package is part of the <b>β‘Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
37
37
|
|
|
38
38
|
# Storm TypeScript Configuration (tsconfig.json) Files
|
|
39
39
|
|
|
40
|
-
This package combines various base `tsconfig.json` files used to configure
|
|
40
|
+
This package combines various base `tsconfig.json` files used to configure
|
|
41
|
+
TypeScript in a Storm workspace.
|
|
41
42
|
|
|
42
43
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
43
44
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
package/bun.json
CHANGED
|
@@ -4,23 +4,19 @@
|
|
|
4
4
|
"docs": "https://bun.sh/docs/typescript",
|
|
5
5
|
"compileOnSave": false,
|
|
6
6
|
"compilerOptions": {
|
|
7
|
-
// Enable latest features
|
|
8
7
|
"lib": ["ESNext"],
|
|
9
8
|
"target": "ESNext",
|
|
10
9
|
"module": "ESNext",
|
|
11
10
|
"moduleDetection": "force",
|
|
12
11
|
"jsx": "react-jsx",
|
|
13
12
|
"allowJs": true,
|
|
14
|
-
// Bundler mode
|
|
15
13
|
"moduleResolution": "bundler",
|
|
16
14
|
"allowImportingTsExtensions": true,
|
|
17
15
|
"verbatimModuleSyntax": true,
|
|
18
16
|
"noEmit": true,
|
|
19
|
-
// Best practices
|
|
20
17
|
"strict": true,
|
|
21
18
|
"skipLibCheck": true,
|
|
22
19
|
"noFallthroughCasesInSwitch": true,
|
|
23
|
-
// Some stricter flags
|
|
24
20
|
"noUnusedLocals": true,
|
|
25
21
|
"noUnusedParameters": true,
|
|
26
22
|
"noPropertyAccessFromIndexSignature": true
|
package/next.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "β‘ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "github",
|
package/react-native.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"extends": "./base.json",
|
|
2
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
4
|
"display": "Storm Software - React Native TypeScript Config",
|
|
4
5
|
"_version": "3.0.2",
|
|
@@ -33,6 +34,13 @@
|
|
|
33
34
|
"esModuleInterop": true,
|
|
34
35
|
"skipLibCheck": true
|
|
35
36
|
},
|
|
36
|
-
"include": [
|
|
37
|
+
"include": [
|
|
38
|
+
"**/*.ts",
|
|
39
|
+
"**/*.js",
|
|
40
|
+
"**/*.tsx",
|
|
41
|
+
"**/*.jsx",
|
|
42
|
+
"**/*.d.ts",
|
|
43
|
+
"**/*.json"
|
|
44
|
+
],
|
|
37
45
|
"exclude": ["**/node_modules"]
|
|
38
46
|
}
|
package/react.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
+
"extends": "./base.json",
|
|
2
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
4
|
"display": "Storm Software - React (Vite) TypeScript Config",
|
|
4
5
|
"_version": "3.0.0",
|
|
@@ -9,19 +10,24 @@
|
|
|
9
10
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
10
11
|
"module": "ESNext",
|
|
11
12
|
"skipLibCheck": true,
|
|
12
|
-
/* Bundler mode */
|
|
13
13
|
"moduleResolution": "bundler",
|
|
14
14
|
"allowImportingTsExtensions": true,
|
|
15
15
|
"resolveJsonModule": true,
|
|
16
16
|
"isolatedModules": true,
|
|
17
17
|
"noEmit": true,
|
|
18
18
|
"jsx": "react-jsx",
|
|
19
|
-
/* Linting */
|
|
20
19
|
"strict": true,
|
|
21
20
|
"noUnusedLocals": true,
|
|
22
21
|
"noUnusedParameters": true,
|
|
23
22
|
"noFallthroughCasesInSwitch": true
|
|
24
23
|
},
|
|
25
|
-
"include": [
|
|
24
|
+
"include": [
|
|
25
|
+
"**/*.ts",
|
|
26
|
+
"**/*.js",
|
|
27
|
+
"**/*.tsx",
|
|
28
|
+
"**/*.jsx",
|
|
29
|
+
"**/*.d.ts",
|
|
30
|
+
"**/*.json"
|
|
31
|
+
],
|
|
26
32
|
"exclude": ["**/node_modules"]
|
|
27
33
|
}
|