1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 02:12:30 +01:00
lossless-cut/tsconfig.web.json
Mikael Finstad 4892437b83
tsify
2024-05-20 12:17:53 +02:00

15 lines
318 B
JSON

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