mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Remove adf-testing lib * remove adf-testing references * remove testing:bundle from CI workflows
59 lines
1.7 KiB
JSON
59 lines
1.7 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"]
|
|
},
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true
|
|
},
|
|
"exclude": [
|
|
"testing",
|
|
"*/node_modules",
|
|
"*/demo",
|
|
"config",
|
|
"*/coverage",
|
|
"node_modules",
|
|
"*/dist",
|
|
"dist"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"strictMetadataEmit": false,
|
|
"skipTemplateCodegen": true,
|
|
"preserveWhitespaces": false
|
|
},
|
|
"typedocOptions": {
|
|
"json": "docs/docs.json",
|
|
"exclude": ["**/*.spec.ts", "node_modules"],
|
|
"ignoreCompilerErrors": true
|
|
}
|
|
}
|