mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-17 04:20:26 +00:00
39 lines
835 B
JSON
39 lines
835 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext",
|
|
"DOM.Iterable",
|
|
"DOM.AsyncIterable"
|
|
],
|
|
"useDefineForClassFields": true,
|
|
"paths": {
|
|
"@proj-airi/stage-ui/*": [
|
|
"../../packages/stage-ui/src/*"
|
|
],
|
|
"@proj-airi/stage-layouts/*": [
|
|
"../../packages/stage-layouts/src/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vitest",
|
|
"vite/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"vue-macros/macros-global",
|
|
"unplugin-info/client",
|
|
"@webgpu/types"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@vue-macros/volar/define-models",
|
|
"@vue-macros/volar/define-slots"
|
|
]
|
|
}
|
|
}
|