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

17 lines
368 B
JSON
Raw Normal View History

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