mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
28 lines
622 B
JSON
28 lines
622 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"types": [],
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"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"
|
|
]
|
|
}
|