Skip to content

Commit 43ac850

Browse files
committed
chore: bump deps and rearrange ts configs
1 parent 535de5c commit 43ac850

File tree

6 files changed

+75
-72
lines changed

6 files changed

+75
-72
lines changed

package-lock.json

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,11 @@
8383
"postpublish": "npm run restore-readme",
8484
"ncu": "ncu",
8585
"postncu": "npm i",
86-
"bump-biome": "npm i @biomejs/biome@latest --save-exact"
86+
"bump-biome:latest": "npm i -DE @biomejs/biome@latest",
87+
"bump-biome:nightly": "npm i -DE @biomejs/biome@nightly"
8788
},
8889
"devDependencies": {
89-
"@biomejs/biome": "1.5.3",
90+
"@biomejs/biome": "1.5.3-nightly.69f9031",
9091
"@changesets/cli": "^2.27.1",
9192
"@commitlint/cli": "^18.6.1",
9293
"@commitlint/config-conventional": "^18.6.2",
@@ -95,9 +96,9 @@
9596
"@prettier/plugin-ruby": "^4.0.4",
9697
"@prettier/plugin-xml": "^3.2.2",
9798
"@stedi/prettier-plugin-jsonata": "^2.1.1",
98-
"@types/node": "^20.11.19",
99-
"@vitest/coverage-istanbul": "^1.3.0",
100-
"@vitest/ui": "^1.3.0",
99+
"@types/node": "^20.11.20",
100+
"@vitest/coverage-istanbul": "^1.3.1",
101+
"@vitest/ui": "^1.3.1",
101102
"@xml-tools/parser": "^1.0.11",
102103
"chevrotain": "7.1.1",
103104
"concurrently": "^8.2.2",
@@ -122,15 +123,15 @@
122123
"simple-git-hooks": "^2.9.0",
123124
"tsx": "^4.7.1",
124125
"typescript": "^5.3.3",
125-
"vite": "^5.1.3",
126-
"vitest": "^1.3.0"
126+
"vite": "^5.1.4",
127+
"vitest": "^1.3.1"
127128
},
128129
"dependencies": {
129130
"@types/estree": "^1.0.5",
130131
"dedent": "^1.5.1",
131132
"micro-memoize": "^4.1.2",
132133
"package-up": "^5.0.0",
133134
"tiny-jsonc": "^1.0.1",
134-
"type-fest": "^4.10.2"
135+
"type-fest": "^4.10.3"
135136
}
136137
}

tsconfig.base.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ESNext",
4+
"useDefineForClassFields": true,
5+
"module": "ESNext",
6+
"lib": ["ESNext"],
7+
"types": ["node"],
8+
"skipLibCheck": true,
9+
"moduleResolution": "Bundler",
10+
"resolveJsonModule": true,
11+
"isolatedModules": true,
12+
"declaration": true,
13+
"emitDeclarationOnly": true,
14+
"declarationDir": "./dist",
15+
"strict": true,
16+
"noUnusedLocals": true,
17+
"noUnusedParameters": true,
18+
"noFallthroughCasesInSwitch": true,
19+
"noUncheckedIndexedAccess": true,
20+
},
21+
}

tsconfig.json

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
{
2-
"compilerOptions": {
3-
"target": "ESNext",
4-
"useDefineForClassFields": true,
5-
"module": "ESNext",
6-
"lib": ["ESNext"],
7-
"types": ["node"],
8-
"skipLibCheck": true,
9-
"moduleResolution": "Bundler",
10-
"resolveJsonModule": true,
11-
"isolatedModules": true,
12-
"declaration": true,
13-
"emitDeclarationOnly": true,
14-
"declarationDir": "./dist",
15-
"strict": true,
16-
"noUnusedLocals": true,
17-
"noUnusedParameters": true,
18-
"noFallthroughCasesInSwitch": true,
19-
"noUncheckedIndexedAccess": true,
20-
},
2+
"extends": "./tsconfig.base.json",
213
"include": ["./src", "./tests"],
224
"references": [
235
{

tsconfig.node.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
2-
"extends": ["./tsconfig.json"],
2+
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
44
"composite": true,
5-
"types": ["node"],
65
"resolveJsonModule": true,
76
"allowJs": true
87
},

tsconfig.production.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2+
"extends": ["./tsconfig.base.json"],
23
"compilerOptions": {
34
"stripInternal": true
45
},
5-
"extends": ["./tsconfig.json"],
66
"include": ["./src"]
77
}

0 commit comments

Comments
 (0)