mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
52 lines
1.5 KiB
JSON
52 lines
1.5 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"],
|
|
"paths": {
|
|
"@alfresco/process-services": ["./process-services/"],
|
|
"@alfresco/content-services": ["./content-services/"],
|
|
"@alfresco/core": ["./core/"],
|
|
"@alfresco/insights": ["./analytics"],
|
|
"alfresco-js-api": ["./node_modules/alfresco-js-api/"],
|
|
"@angular/*": ["./node_modules/@angular/*"],
|
|
"rxjs/*": ["./node_modules/rxjs/*"]
|
|
},
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"exclude": [
|
|
"*/node_modules",
|
|
"*/demo",
|
|
"config",
|
|
"*/coverage",
|
|
"node_modules",
|
|
"*/dist",
|
|
"dist"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictMetadataEmit": false,
|
|
"skipTemplateCodegen": true
|
|
}
|
|
}
|