fix(kubejs): update kubejs scripts

This commit is contained in:
Malasaur 2026-02-22 21:51:29 +01:00
parent 28a30d94c0
commit 57be389894
No known key found for this signature in database
13 changed files with 921 additions and 251 deletions

17
kubejs/jsconfig.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"allowJs": true,
"noEmit": true,
"checkJs": true,
"strict": true,
"target": "ES2020",
"module": "ES2020",
"lib": ["ES2020", "DOM"],
"baseUrl": ".",
"paths": {
"@/*": ["*"]
}
},
"include": ["**/*.js", "**/*.d.ts"],
"exclude": ["probe/cache/**/*"]
}