* feat: prompt engineering playground * chore: lint * feat: pinia store * fix: use pinia * feat: devtools * fix: type error, unocss config * chore: update apps/playground-prompt-engineering/src/assets/main.css --------- Co-authored-by: Neko Ayaka <neko@ayaka.moe>
39 lines
829 B
JSON
39 lines
829 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/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"
|
|
]
|
|
}
|
|
}
|