uppy/tsconfig.shared.json
2023-10-17 15:38:15 +02:00

25 lines
662 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": "preserve",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true
}
}