mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* fix remove angular folder problem * fix npm import cli * fix search module * fix comment * fix tsconfig output * es 20016 tsconfig * travis add demo shell dist * exclude datapicker process services * demo shell script fix * bundle check new build * add simulate publish * invert publish * test distribution * improve sh help * uncomment script * finally got the guilty piece of code * run e2e
54 lines
1.6 KiB
JSON
54 lines
1.6 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": ["./process-services/"],
|
|
"@alfresco/adf-content-services": ["./content-services/"],
|
|
"@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
|
|
}
|
|
}
|