This commit is contained in:
2025-10-19 22:39:40 +09:00
parent 62046f6c8d
commit 24bedfd325
5 changed files with 295 additions and 32 deletions

19
jsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}