Files
stream.ui/tsconfig.json
2026-01-02 22:00:50 +07:00

26 lines
476 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"lib": [
"ESNext", "DOM"
],
"types": ["vite/client"],
"jsx": "preserve",
"jsxImportSource": "vue",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"auto-imports.d.ts",
"components.d.ts"
]
}