mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 18:35:54 +00:00
* feature(integration): initial Angular framework implementation * Package cleanup * Actually add the components this time * fix rendering bug * Add documentation * dependency fixes * add broken example * Make locales ignore angular * dependency updates * Update package-lock.json * Fix broken example * Make example consistent with docs * angular: Update styling advice * angular: Build system stuff * angular: Escape dependency hell * angular: Add dashboard-modal component * angular: Update package.json/prepare for release * angular: Fix styling bugs * add Angular dependencies * Update README.md * lint fixes — those deps are in root * Update README.md Co-authored-by: Adam Medford <adammedford@gmail.com> Co-authored-by: Artur Paikin <artur@arturpaikin.com>
16 lines
349 B
JSON
16 lines
349 B
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./out-tsc/app",
|
|
"types": []
|
|
},
|
|
"paths": { "@angular/*": [ "./node_modules/@angular/*" ] },
|
|
"files": [
|
|
"src/main.ts",
|
|
"src/polyfills.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|