25.12.0-alpha.0

This commit is contained in:
2025-11-30 17:44:44 +09:00
parent a53f8f3023
commit 0ee2728590
45 changed files with 220 additions and 280 deletions
+6 -2
View File
@@ -2,7 +2,7 @@
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"outDir": "./dist",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
@@ -12,12 +12,16 @@
"baseUrl": "./",
"typeRoots": [
"./node_modules/@types",
"./types"
"./src/types"
],
"paths": {
"@/*": ["./src/*"],
"ws": ["./node_modules/ws/index.js"],
"@types/ws": ["./node_modules/@types/ws/index.d.ts"]
},
"removeComments": true,
},
"tsc-alias": {
"resolveFullPaths": true,
},
}