1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "commonjs",
- "lib": ["dom", "esnext"],
- "resolveJsonModule": true,
- "allowJs": true,
- "noImplicitAny": true,
- "noImplicitThis": true,
- "strictNullChecks": true,
- "types": [],
- "noEmit": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": false,
- "strictFunctionTypes": true,
- "forceConsistentCasingInFileNames": true
- },
- "include": [
- "packages/*/types/index.d.ts",
- "packages/@uppy/*/types/index.d.ts"
- ],
- "exclude": ["packages/@uppy/companion"]
- }
|