mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
feat: use tsgo where capable (#16984)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
"scripts": {
|
||||
"watch": "nodemon -w ../../package.json -e json --exec \"node build.js watch\"",
|
||||
"build": "node build.js",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"typecheck": "tsgo --noEmit",
|
||||
"eslint": "eslint --quiet src/**/*.ts",
|
||||
"lint": "pnpm typecheck && pnpm eslint"
|
||||
},
|
||||
@@ -18,8 +18,7 @@
|
||||
"@typescript-eslint/parser": "8.49.0",
|
||||
"@typescript/lib-webworker": "npm:@types/serviceworker@0.0.74",
|
||||
"eslint-plugin-import": "2.32.0",
|
||||
"nodemon": "3.1.11",
|
||||
"typescript": "5.9.3"
|
||||
"nodemon": "3.1.11"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
||||
|
||||
@@ -19,7 +19,6 @@
|
||||
"experimentalDecorators": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"@@/*": ["../frontend-shared/*"]
|
||||
@@ -28,6 +27,7 @@
|
||||
"./node_modules/@types",
|
||||
"./src/@types"
|
||||
],
|
||||
"libReplacement": true,
|
||||
"lib": [
|
||||
"esnext",
|
||||
"webworker"
|
||||
|
||||
Reference in New Issue
Block a user