soulsync/webui/tsconfig.json
Antti Kettunen ce1fb16b76
Split webui tooling into separate configs
- Move Vite, Vitest, Oxfmt, and Oxlint into standalone config files
- Replace vite-plus scripts and test imports with direct tools
- Keep the generated route tree out of formatter and linter checks
2026-05-13 22:26:25 +03:00

30 lines
708 B
JSON

{
"compilerOptions": {
"target": "ES2024",
"useDefineForClassFields": true,
"lib": ["ES2024", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["./src/*"]
},
"strict": true,
"jsx": "react-jsx",
"allowJs": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["node", "vitest/globals", "@testing-library/jest-dom", "react", "react-dom"]
},
"include": [
"./src",
"./tests",
"./vitest.setup.ts",
"./vite.config.ts",
"./vitest.config.ts",
"./playwright.config.ts"
],
"references": []
}