lossless-cut/tsconfig.web.json

17 wiersze
377 B
JSON
Czysty Zwykły widok Historia

2024-01-02 15:45:43 +00:00
{
"extends": ["@tsconfig/strictest", "@tsconfig/vite-react/tsconfig.json"],
"compilerOptions": {
2024-02-20 14:54:00 +00:00
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"noEmit": true,
2024-01-02 15:45:43 +00:00
"noImplicitAny": false, // todo
"checkJs": false, // todo
"allowJs": true, // todo
},
2024-03-15 13:45:33 +00:00
"references": [
{ "path": "./tsconfig.main.json" },
],
2024-01-02 15:45:43 +00:00
"include": [
2024-03-21 15:28:25 +00:00
"src/renderer/**/*",
2024-01-02 15:45:43 +00:00
],
}