uppy/tsconfig.shared.json
Mikael Finstad 8f97fd61fa
cleanup tsconfig (#5520)
- move skipLibCheck to tsconfig.shared
- remove noImplicitAny

was added in https://github.com/transloadit/uppy/pull/4844
but without an explanation
2024-11-18 20:41:59 +08:00

24 lines
616 B
JSON

{
"compilerOptions": {
"composite": true,
"incremental": true,
"target": "ESnext",
"module": "preserve",
"lib": ["dom", "ESnext"],
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"allowImportingTsExtensions": true,
"allowJs": false,
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noImplicitAny": true,
"noImplicitThis": true,
"strict": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}