Skip to content

Commit 682e3d7

Browse files
committed
migrate from tsc to tsgo
1 parent 10bd628 commit 682e3d7

File tree

2 files changed

+156
-8
lines changed

2 files changed

+156
-8
lines changed

package-lock.json

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

package.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
"version": "10.0.0",
44
"type": "module",
55
"description": "parse Scrapbox notation to JavaScript Object",
6-
"files": ["dist"],
6+
"files": [
7+
"dist"
8+
],
79
"types": "./dist/index.d.ts",
810
"exports": {
911
".": "./dist/index.js",
@@ -22,16 +24,19 @@
2224
"prepare": "npm run build",
2325
"test": "node --experimental-default-config-file --test --experimental-test-coverage",
2426
"test:update": "npm test -- --experimental-test-snapshots",
25-
"lint": "npm run lint:biome && npm run lint:tsc",
27+
"lint": "npm run lint:biome && npm run lint:type",
2628
"lint:biome": "biome check .",
27-
"lint:tsc": "tsc -p ./tsconfig.lint.json",
29+
"lint:type": "tsgo -p ./tsconfig.lint.json",
2830
"format": "biome check --write ."
2931
},
3032
"repository": {
3133
"type": "git",
3234
"url": "git+https://github.com/progfay/scrapbox-parser.git"
3335
},
34-
"keywords": ["scrapbox", "parser"],
36+
"keywords": [
37+
"scrapbox",
38+
"parser"
39+
],
3540
"author": "progfay",
3641
"license": "MIT",
3742
"bugs": {
@@ -41,8 +46,8 @@
4146
"devDependencies": {
4247
"@biomejs/biome": "1.9.4",
4348
"@types/node": "22.15.21",
44-
"tsdown": "0.12.3",
45-
"typescript": "5.8.3"
49+
"@typescript/native-preview": "7.0.0-dev.20250525.1",
50+
"tsdown": "0.12.3"
4651
},
4752
"publishConfig": {
4853
"access": "public"

0 commit comments

Comments
 (0)