feat: kubejs basics

This commit is contained in:
2025-11-30 11:43:11 +08:00
parent 984db8eaf5
commit 80f23fe7d3
5 changed files with 81 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2015",
"lib": [
"ES5",
"ES2015"
],
"rootDir": "./src",
"typeRoots": [
"../../.probe/server/probe-types"
],
"baseUrl": "../../.probe/server/probe-types",
"skipLibCheck": true
},
"include": [
"./src/**/*",
null
]
}