You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lossless-cut/tsconfig.web.json

17 lines
378 B
JSON

3 years ago
{
"extends": ["@tsconfig/strictest", "@tsconfig/vite-react/tsconfig.json"],
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "esnext",
2 years ago
"noEmit": true,
"types": ["vite/client"],
3 years ago
},
2 years ago
"references": [
{ "path": "./tsconfig.main.json" },
{ "path": "./tsconfig.common.json" },
2 years ago
],
3 years ago
"include": [
"src/renderer/**/*",
3 years ago
],
}