uppy/tsconfig.shared.json
Merlijn Vos a4bbd82977
@uppy/provider-views: migrate to TS (#4919)
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
2024-02-27 18:15:08 +01:00

26 lines
696 B
JSON

{
"compilerOptions": {
"composite": true,
"incremental": true,
"target": "ESnext",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["dom", "ESnext"],
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"allowJs": false,
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true
}
}