1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 10:22:31 +01:00
lossless-cut/tsconfig.web.json

19 lines
484 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-12 07:11:36 +01:00
"plugins": [{ "name": "typescript-plugin-css-modules" }],
"lib": ["es2023", "DOM", "DOM.Iterable"],
2024-01-02 16:45:43 +01:00
"exactOptionalPropertyTypes": false, // todo
"noUncheckedIndexedAccess": true,
"noEmit": true,
"isolatedModules": true,
"noImplicitAny": false, // todo
"checkJs": false, // todo
"allowJs": true, // todo
},
"include": [
"src/**/*",
],
}