feat(component-calling): or component use, init

This commit is contained in:
Neko Ayaka
2025-07-29 02:37:29 +08:00
parent cf78423acc
commit 7f178b130f
28 changed files with 1175 additions and 9 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable",
"DOM.AsyncIterable",
"WebWorker"
],
"module": "ESNext",
"moduleResolution": "bundler",
"types": [
"vite/client",
"unplugin-vue-router/client"
],
"noUnusedLocals": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.mts"
]
}