Files
PhotonVision/photon-client/tsconfig.json
Sam Freund 2372e110f9 TypeCheck Frontend (#2394)
We recently had an error that would've been caught by type checking in the frontend (see #2393). This PR implements type checking so that future errors will be caught.

Additionally, this PR contains miscellaneous frontend cleanup that's tangentially related to type-checking.
2026-05-05 15:24:19 +00:00

19 lines
483 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "vite.config.ts", "playwright.config.ts", "src/**/*", "src/**/*.vue", "tests/**/*"],
"compilerOptions": {
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"noImplicitAny": true,
"strict": true,
"removeComments": true,
"sourceMap": true,
"module": "ESNext",
"types": ["node"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
}