airi/apps/stage-web/tsconfig.json
DrHuangMHT 7e4486c068
Some checks failed
CI / Lint (push) Waiting to run
CI / Build Test (stage-tamagotchi) (push) Waiting to run
CI / Build Test (stage-web) (push) Waiting to run
CI / Build Test (ui-loading-screens) (push) Waiting to run
CI / Build Test (ui-transitions) (push) Waiting to run
CI / Type Check (push) Waiting to run
CI / Check Provenance (push) Waiting to run
Cloudflare Workers / Deploy - stage-web (push) Waiting to run
Release Docker / OCI for Assets / Release Assets (ui-server-auth) (push) Waiting to run
Update Nix pnpmDeps Hash / update (push) Waiting to run
Update Nix assets Hash / update (push) Has been cancelled
chore(ci): fix typecheck on navigator.gpu (#1700)
2026-04-21 20:27:17 +08:00

42 lines
920 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"target": "ESNext",
"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",
"vite-plugin-pwa/client",
"vue-macros/macros-global",
"@types/audioworklet",
"unplugin-info/client",
"@webgpu/types"
],
"allowJs": true,
"strict": true,
"skipLibCheck": true
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-slots"
]
}
}