uppy/tsconfig.shared.json
Merlijn Vos 88d508f7bf
TS strict mode (#5258)
Co-authored-by: Antoine du Hamel <antoine@transloadit.com>
2024-06-20 16:54:10 +02:00

23 lines
590 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
}
}