mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-19 08:10:45 +00:00
46 lines
949 B
JSON
46 lines
949 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"lib": [
|
|
"DOM",
|
|
"ESNext",
|
|
"DOM.Iterable",
|
|
"DOM.AsyncIterable"
|
|
],
|
|
"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",
|
|
"vite-plugin-pwa/client",
|
|
"vue-macros/macros-global",
|
|
"@types/audioworklet",
|
|
"unplugin-info/client",
|
|
"node",
|
|
"@webgpu/types"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@vue-macros/volar/define-models",
|
|
"@vue-macros/volar/define-slots"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"**/build/**",
|
|
"**/dist/**",
|
|
"**/public/**"
|
|
]
|
|
}
|