mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-21 18:02:35 +01:00
21 lines
458 B
JSON
21 lines
458 B
JSON
|
{
|
||
|
"extends": ["@tsconfig/strictest"],
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
|
||
|
"emitDeclarationOnly": true,
|
||
|
"outDir": "ts-dist",
|
||
|
"tsBuildInfoFile": "ts-dist/tsconfig.tsbuildinfo",
|
||
|
"lib": ["es2023"],
|
||
|
"target": "ESNext",
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "Bundler",
|
||
|
|
||
|
"noImplicitAny": false, // todo
|
||
|
"checkJs": true, // todo
|
||
|
"allowJs": true, // todo
|
||
|
},
|
||
|
"include": [
|
||
|
"public/**/*", "types.ts",
|
||
|
],
|
||
|
}
|