mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-22 18:32:34 +01:00
15 lines
374 B
JSON
15 lines
374 B
JSON
|
{
|
||
|
"extends": ["@tsconfig/strictest", "@tsconfig/vite-react/tsconfig.json"],
|
||
|
"compilerOptions": {
|
||
|
"exactOptionalPropertyTypes": false, // todo
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noEmit": true,
|
||
|
"isolatedModules": true,
|
||
|
"noImplicitAny": false, // todo
|
||
|
"checkJs": false, // todo
|
||
|
"allowJs": true, // todo
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*",
|
||
|
],
|
||
|
}
|