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