mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-02 17:53:30 +00:00
* bootstrap extensibility in demo shell app * example data * parse and store plugin metadata * preserve root config metadata * show plugin info in the About box * update tests * update gitignore * remove unused imports * disable flaky test * add missing tsconfig entries * use pre-build project as CLI 6+ does * update package scripts * update tsconfig * make dist builds work locally * update scripts * Revert "update scripts" This reverts commit 58d218643fe22d642ad7f3ac67f9089ed69ec33e. * update scripts * use lib paths * update configs * update tsconfig
57 lines
1.8 KiB
JSON
57 lines
1.8 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": false,
|
|
"noLib": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitUseStrict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"baseUrl" : "./",
|
|
"types": ["jasmine"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@alfresco/adf-process-services-cloud": ["./process-services-cloud/"],
|
|
"@alfresco/adf-process-services": ["./process-services/"],
|
|
"@alfresco/adf-content-services": ["./content-services/"],
|
|
"@alfresco/adf-extensions": ["./extensions/"],
|
|
"@alfresco/adf-core": ["./core/"],
|
|
"@alfresco/adf-insights": ["./analytics"],
|
|
"alfresco-js-api": ["../node_modules/alfresco-js-api/"],
|
|
"@angular/*": ["../node_modules/@angular/*"],
|
|
"@mat-datetimepicker/*": ["../node_modules/@mat-datetimepicker/*"],
|
|
"rxjs/*": ["../node_modules/rxjs/*"]
|
|
},
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"exclude": [
|
|
"*/node_modules",
|
|
"*/demo",
|
|
"config",
|
|
"*/coverage",
|
|
"node_modules",
|
|
"*/dist",
|
|
"dist"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictMetadataEmit": false,
|
|
"skipTemplateCodegen": true,
|
|
"preserveWhitespaces": false
|
|
}
|
|
}
|