1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-21 18:02:35 +01:00
lossless-cut/tsconfig.web.json
Mikael Finstad 6e60133ef7
try to fix broken expressions
(in production) - fixes #2059
also type
and log worker error early
2024-08-06 16:04:27 +02:00

17 lines
349 B
JSON

{
"extends": ["@tsconfig/strictest", "@tsconfig/vite-react/tsconfig.json"],
"compilerOptions": {
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"noEmit": true,
"noImplicitAny": false, // todo
"types": ["vite/client"],
},
"references": [
{ "path": "./tsconfig.main.json" },
],
"include": [
"src/renderer/**/*",
],
}