mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
* @uppy/angular: update ng version * hack to allow the publish of the Angular package * fix @types/webpack-dev-server resolution (the package is deprecated anyway) * Add Storybook back * Fix default value of Input * Update README * Apply suggestions from code review * fix @types/react version conflict * Update packages/@uppy/angular/.storybook/tsconfig.json
38 lines
988 B
JSON
38 lines
988 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"@uppy/angular": [
|
|
"dist/uppy/angular/uppy-angular",
|
|
"dist/uppy/angular"
|
|
]
|
|
},
|
|
"baseUrl": "./",
|
|
"outDir": "./dist/out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "es2017",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true
|
|
}
|
|
}
|