@storm-software/tsconfig 0.11.1 β 0.13.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 +14 -0
- package/README.md +9 -5
- package/app.json +25 -0
- package/base.json +1 -10
- package/dom-app.json +25 -0
- package/dom-library.json +30 -0
- package/library.json +30 -0
- package/package.json +1 -1
- package/react-native.json +3 -19
- package/react.json +29 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 0.13.0 (2024-07-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### π Features
|
|
5
|
+
|
|
6
|
+
- **tsconfig:** Added various new base `tsconfig` file types ([09e5d275](https://github.com/storm-software/storm-ops/commit/09e5d275))
|
|
7
|
+
|
|
8
|
+
## 0.12.0 (2024-06-26)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### π Features
|
|
12
|
+
|
|
13
|
+
- **eslint-plugin:** Bundle storm software packages ([f2daca8c](https://github.com/storm-software/storm-ops/commit/f2daca8c))
|
|
14
|
+
|
|
1
15
|
## 0.11.1 (2024-06-24)
|
|
2
16
|
|
|
3
17
|
### π©Ή Fixes
|
package/README.md
CHANGED
|
@@ -21,11 +21,15 @@ 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://docusaurus.io/) 
|
|
25
|
+
|
|
26
|
+
> [!IMPORTANT] This repository, and the apps, libraries, and tools contained in
|
|
27
|
+
> it, are still in their initial development phase. As a result, bugs and issues
|
|
28
|
+
> are expected with their usage. When the main development phase completes, a
|
|
29
|
+
> proper release will be performed, and the packages will be available through
|
|
30
|
+
> NPM (and other distributions). This message will be removed at that time.
|
|
31
|
+
> However, in the meantime, please feel free to report any issues you may come
|
|
32
|
+
> across.
|
|
29
33
|
|
|
30
34
|
<br />
|
|
31
35
|
|
package/app.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Storm Software - Application TypeScript Config",
|
|
4
|
+
"compileOnSave": false,
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
/* Base Options: */
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"target": "es2022",
|
|
10
|
+
"allowJs": true,
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
/* Strictness */
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUncheckedIndexedAccess": true,
|
|
18
|
+
"noImplicitOverride": true,
|
|
19
|
+
/* If transpiling with TypeScript: */
|
|
20
|
+
"module": "NodeNext",
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
/* If your code doesn't run in the DOM: */
|
|
23
|
+
"lib": ["es2022"]
|
|
24
|
+
}
|
|
25
|
+
}
|
package/base.json
CHANGED
|
@@ -31,14 +31,5 @@
|
|
|
31
31
|
"skipDefaultLibCheck": true,
|
|
32
32
|
"esModuleInterop": true,
|
|
33
33
|
"preserveSymlinks": true
|
|
34
|
-
}
|
|
35
|
-
"include": [
|
|
36
|
-
"**/*.ts",
|
|
37
|
-
"**/*.js",
|
|
38
|
-
"**/*.tsx",
|
|
39
|
-
"**/*.jsx",
|
|
40
|
-
"**/*.d.ts",
|
|
41
|
-
"**/*.json"
|
|
42
|
-
],
|
|
43
|
-
"exclude": ["**/node_modules"]
|
|
34
|
+
}
|
|
44
35
|
}
|
package/dom-app.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Storm Software - DOM Library TypeScript Config",
|
|
4
|
+
"compileOnSave": false,
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
/* Base Options: */
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"target": "es2022",
|
|
10
|
+
"allowJs": true,
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
/* Strictness */
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUncheckedIndexedAccess": true,
|
|
18
|
+
"noImplicitOverride": true,
|
|
19
|
+
/* If transpiling with TypeScript: */
|
|
20
|
+
"module": "NodeNext",
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
/* If your code runs in the DOM: */
|
|
23
|
+
"lib": ["es2022", "dom", "dom.iterable"]
|
|
24
|
+
}
|
|
25
|
+
}
|
package/dom-library.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Storm Software - DOM Library TypeScript Config",
|
|
4
|
+
"compileOnSave": false,
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
/* Base Options: */
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"target": "es2022",
|
|
10
|
+
"allowJs": true,
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
/* Strictness */
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUncheckedIndexedAccess": true,
|
|
18
|
+
"noImplicitOverride": true,
|
|
19
|
+
/* If transpiling with TypeScript: */
|
|
20
|
+
"module": "NodeNext",
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
/* AND if you're building for a library: */
|
|
23
|
+
"declaration": true,
|
|
24
|
+
/* AND if you're building for a library in a monorepo: */
|
|
25
|
+
"composite": true,
|
|
26
|
+
"declarationMap": true,
|
|
27
|
+
/* If your code runs in the DOM: */
|
|
28
|
+
"lib": ["es2022", "dom", "dom.iterable"]
|
|
29
|
+
}
|
|
30
|
+
}
|
package/library.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Storm Software - Library TypeScript Config",
|
|
4
|
+
"compileOnSave": false,
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
/* Base Options: */
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"skipLibCheck": true,
|
|
9
|
+
"target": "es2022",
|
|
10
|
+
"allowJs": true,
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"verbatimModuleSyntax": true,
|
|
15
|
+
/* Strictness */
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUncheckedIndexedAccess": true,
|
|
18
|
+
"noImplicitOverride": true,
|
|
19
|
+
/* If transpiling with TypeScript: */
|
|
20
|
+
"module": "NodeNext",
|
|
21
|
+
"sourceMap": true,
|
|
22
|
+
/* AND if you're building for a library: */
|
|
23
|
+
"declaration": true,
|
|
24
|
+
/* AND if you're building for a library in a monorepo: */
|
|
25
|
+
"composite": true,
|
|
26
|
+
"declarationMap": true,
|
|
27
|
+
/* If your code doesn't run in the DOM: */
|
|
28
|
+
"lib": ["es2022"]
|
|
29
|
+
}
|
|
30
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsconfig",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.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,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "./
|
|
2
|
+
"extends": "./react.json",
|
|
3
3
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
4
4
|
"display": "Storm Software - React Native TypeScript Config",
|
|
5
5
|
"_version": "3.0.2",
|
|
@@ -23,24 +23,8 @@
|
|
|
23
23
|
"es2022.object",
|
|
24
24
|
"es2022.string"
|
|
25
25
|
],
|
|
26
|
-
"allowJs": true,
|
|
27
26
|
"jsx": "react-native",
|
|
28
27
|
"noEmit": true,
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"moduleResolution": "node",
|
|
32
|
-
"resolveJsonModule": true,
|
|
33
|
-
"allowSyntheticDefaultImports": true,
|
|
34
|
-
"esModuleInterop": true,
|
|
35
|
-
"skipLibCheck": true
|
|
36
|
-
},
|
|
37
|
-
"include": [
|
|
38
|
-
"**/*.ts",
|
|
39
|
-
"**/*.js",
|
|
40
|
-
"**/*.tsx",
|
|
41
|
-
"**/*.jsx",
|
|
42
|
-
"**/*.d.ts",
|
|
43
|
-
"**/*.json"
|
|
44
|
-
],
|
|
45
|
-
"exclude": ["**/node_modules"]
|
|
28
|
+
"moduleResolution": "node"
|
|
29
|
+
}
|
|
46
30
|
}
|
package/react.json
CHANGED
|
@@ -1,33 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
"extends": "./base.json",
|
|
3
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
4
|
-
"display": "Storm Software - React
|
|
3
|
+
"display": "Storm Software - React TypeScript Config",
|
|
5
4
|
"_version": "3.0.0",
|
|
6
5
|
"compileOnSave": false,
|
|
7
6
|
"compilerOptions": {
|
|
7
|
+
"importHelpers": true,
|
|
8
|
+
"isolatedModules": true,
|
|
9
|
+
"allowJs": false,
|
|
10
|
+
"allowSyntheticDefaultImports": true,
|
|
11
|
+
"forceConsistentCasingInFileNames": true,
|
|
12
|
+
"declaration": true,
|
|
13
|
+
"experimentalDecorators": false,
|
|
14
|
+
"emitDecoratorMetadata": false,
|
|
15
|
+
"downlevelIteration": true,
|
|
16
|
+
"strict": true,
|
|
17
|
+
"esModuleInterop": true,
|
|
18
|
+
"inlineSourceMap": true,
|
|
19
|
+
"preserveSymlinks": true,
|
|
20
|
+
"jsx": "react-jsx",
|
|
21
|
+
"module": "System",
|
|
22
|
+
"moduleResolution": "node",
|
|
23
|
+
"noEmitOnError": false,
|
|
24
|
+
"noImplicitAny": false,
|
|
25
|
+
"noImplicitReturns": false,
|
|
26
|
+
"preserveConstEnums": true,
|
|
27
|
+
// DONT DO THIS so jsdoc will remain
|
|
28
|
+
"removeComments": false,
|
|
29
|
+
"skipLibCheck": true,
|
|
30
|
+
"sourceMap": false,
|
|
31
|
+
"strictNullChecks": true,
|
|
8
32
|
"target": "ES2020",
|
|
9
33
|
"useDefineForClassFields": true,
|
|
10
|
-
"lib": ["
|
|
11
|
-
"
|
|
12
|
-
"skipLibCheck": true,
|
|
13
|
-
"moduleResolution": "bundler",
|
|
34
|
+
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
35
|
+
"types": ["node", "react"],
|
|
14
36
|
"allowImportingTsExtensions": true,
|
|
15
37
|
"resolveJsonModule": true,
|
|
16
|
-
"isolatedModules": true,
|
|
17
|
-
"noEmit": true,
|
|
18
|
-
"jsx": "react-jsx",
|
|
19
|
-
"strict": true,
|
|
20
38
|
"noUnusedLocals": true,
|
|
21
39
|
"noUnusedParameters": true,
|
|
22
40
|
"noFallthroughCasesInSwitch": true
|
|
23
41
|
},
|
|
24
|
-
"
|
|
25
|
-
"**/*.ts",
|
|
26
|
-
"**/*.js",
|
|
27
|
-
"**/*.tsx",
|
|
28
|
-
"**/*.jsx",
|
|
29
|
-
"**/*.d.ts",
|
|
30
|
-
"**/*.json"
|
|
31
|
-
],
|
|
32
|
-
"exclude": ["**/node_modules"]
|
|
42
|
+
"exclude": ["test", "tmp", "dist", "types", "**/__tests__", "node_modules"]
|
|
33
43
|
}
|