@storm-software/tsconfig 0.16.0 → 0.18.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 +18 -3
- package/base.json +3 -6
- package/core.json +2 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,26 @@
|
|
|
1
|
-
## 0.
|
|
1
|
+
## 0.18.0 (2024-07-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
- **tsconfig:** Updates around `base` and `core` tsconfig files ([18b553df](https://github.com/storm-software/storm-ops/commit/18b553df))
|
|
2
7
|
|
|
8
|
+
## 0.17.0 (2024-07-29)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
- **build-tools:** Update unbuild process to use the `tsconfck` package
|
|
13
|
+
([d0e4dbf6](https://github.com/storm-software/storm-ops/commit/d0e4dbf6))
|
|
14
|
+
|
|
15
|
+
## 0.16.0 (2024-07-29)
|
|
3
16
|
|
|
4
17
|
### Features
|
|
5
18
|
|
|
6
|
-
- **tsconfig:** Added an accurate package description
|
|
19
|
+
- **tsconfig:** Added an accurate package description
|
|
20
|
+
([b95b0987](https://github.com/storm-software/storm-ops/commit/b95b0987))
|
|
7
21
|
|
|
8
|
-
- **config:** Added the `brand2` and `brand3` color tokens
|
|
22
|
+
- **config:** Added the `brand2` and `brand3` color tokens
|
|
23
|
+
([58705631](https://github.com/storm-software/storm-ops/commit/58705631))
|
|
9
24
|
|
|
10
25
|
## 0.15.0 (2024-07-29)
|
|
11
26
|
|
package/base.json
CHANGED
|
@@ -3,15 +3,12 @@
|
|
|
3
3
|
"display": "Storm Software - Base TypeScript Config",
|
|
4
4
|
"compileOnSave": false,
|
|
5
5
|
"compilerOptions": {
|
|
6
|
-
"target": "
|
|
7
|
-
"module": "
|
|
8
|
-
"lib": ["
|
|
6
|
+
"target": "es2022",
|
|
7
|
+
"module": "NodeNext",
|
|
8
|
+
"lib": ["es2022"],
|
|
9
9
|
"noLib": false,
|
|
10
10
|
"moduleDetection": "force",
|
|
11
|
-
"moduleResolution": "bundler",
|
|
12
11
|
"pretty": true,
|
|
13
|
-
"sourceMap": true,
|
|
14
|
-
"incremental": true,
|
|
15
12
|
"noImplicitReturns": true,
|
|
16
13
|
"noUnusedLocals": true,
|
|
17
14
|
"noUncheckedIndexedAccess": true,
|
package/core.json
CHANGED
|
@@ -2,15 +2,12 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"display": "Storm Software - Core TypeScript Config",
|
|
4
4
|
"extends": "./base.json",
|
|
5
|
-
"compileOnSave": false,
|
|
6
5
|
"compilerOptions": {
|
|
7
6
|
/* Base Options: */
|
|
8
7
|
"allowJs": true,
|
|
8
|
+
"incremental": true,
|
|
9
9
|
"isolatedModules": true,
|
|
10
|
-
"
|
|
11
|
-
/* Strictness */
|
|
12
|
-
"noUncheckedIndexedAccess": true,
|
|
13
|
-
"noImplicitOverride": true,
|
|
10
|
+
"preserveSymlinks": true,
|
|
14
11
|
/* If transpiling with TypeScript: */
|
|
15
12
|
"sourceMap": true,
|
|
16
13
|
/* AND if you're building for a library: */
|
package/package.json
CHANGED