Files
moeka-project/apps/stage-tamagotchi/tsconfig.json
T
LemonNeko 15fa1fcfbe refactor(stage-tamagotchi): remove stage electron (#115)
* refactor(stage-tamagotchi): remove stage electron

* fix(stage-tamagotchi): path
2025-04-05 18:04:13 +08:00

37 lines
780 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"paths": {
"@proj-airi/stage-ui/*": [
"../../packages/stage-ui/src/*"
],
"@proj-airi/ui-transitions": [
"../../packages/ui-transitions/src/index.ts"
]
},
"resolveJsonModule": true,
"types": [
"vitest",
"vite/client",
"vite-plugin-vue-layouts/client",
"vite-plugin-pwa/client",
"unplugin-vue-macros/macros-global",
"unplugin-vue-router/client"
],
"allowJs": true,
"strict": true,
"skipLibCheck": true
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots"
]
}
}