@storm-software/tsconfig 0.5.0 β†’ 0.11.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 CHANGED
@@ -1,3 +1,45 @@
1
+ ## 0.11.0 (2024-06-24)
2
+
3
+
4
+ ### πŸš€ Features
5
+
6
+ - **eslint-plugin:** Split up the eslint plugin implementation into separate packages ([aba11be4](https://github.com/storm-software/storm-ops/commit/aba11be4))
7
+
8
+ ## 0.10.0 (2024-06-22)
9
+
10
+
11
+ ### πŸš€ Features
12
+
13
+ - **workspace-tools:** Upgrade the workspace pnpm-lock file ([d33c20cb](https://github.com/storm-software/storm-ops/commit/d33c20cb))
14
+
15
+ ## 0.9.0 (2024-06-22)
16
+
17
+
18
+ ### πŸš€ Features
19
+
20
+ - **storm-ops:** Updated pnpm-lock file ([22be1efd](https://github.com/storm-software/storm-ops/commit/22be1efd))
21
+
22
+ ## 0.8.0 (2024-06-22)
23
+
24
+
25
+ ### πŸš€ Features
26
+
27
+ - **workspace-tools:** Added `lint` and `format` tasks and improved cache input management ([f2ade202](https://github.com/storm-software/storm-ops/commit/f2ade202))
28
+
29
+ ## 0.7.0 (2024-06-21)
30
+
31
+
32
+ ### πŸš€ Features
33
+
34
+ - **eslint-plugin:** Resolve issues with eslint module types ([ca513974](https://github.com/storm-software/storm-ops/commit/ca513974))
35
+
36
+ ## 0.6.0 (2024-06-17)
37
+
38
+
39
+ ### πŸš€ Features
40
+
41
+ - **tsconfig:** Improve the Typescript configuration inheritance and linting ([b84c881f](https://github.com/storm-software/storm-ops/commit/b84c881f))
42
+
1
43
  ## 0.5.0 (2024-06-05)
2
44
 
3
45
 
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
- [![Version](https://img.shields.io/badge/version-0.3.6-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
24
+ [![Version](https://img.shields.io/badge/version-0.10.0-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;
25
25
  [![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with docusaurus](https://img.shields.io/badge/documented_with-docusaurus-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://docusaurus.io/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
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 TypeScript in a Storm workspace.
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
@@ -22,6 +22,12 @@
22
22
  }
23
23
  ]
24
24
  },
25
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
25
+ "include": [
26
+ "next-env.d.ts",
27
+ "**/*.ts",
28
+ "**/*.tsx",
29
+ "**/*.mdx",
30
+ ".next/types/**/*.ts"
31
+ ],
26
32
  "exclude": ["node_modules"]
27
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/tsconfig",
3
- "version": "0.5.0",
3
+ "version": "0.11.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",
@@ -17,7 +17,7 @@
17
17
  "email": "contact@stormsoftware.com",
18
18
  "url": "https://stormsoftware.com"
19
19
  },
20
- "license": "Apache 2.0",
20
+ "license": "Apache-2.0",
21
21
  "private": false,
22
22
  "keywords": [
23
23
  "storm",
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": ["**/*.ts", "**/*.js", "**/*.tsx", "**/*.jsx", "**/*.d.ts", "**/*.json"],
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": ["**/*.ts", "**/*.js", "**/*.tsx", "**/*.jsx", "**/*.d.ts", "**/*.json"],
24
+ "include": [
25
+ "**/*.ts",
26
+ "**/*.js",
27
+ "**/*.tsx",
28
+ "**/*.jsx",
29
+ "**/*.d.ts",
30
+ "**/*.json"
31
+ ],
26
32
  "exclude": ["**/node_modules"]
27
33
  }