mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* Run tsc on the e2e folder and as part of the sh script * in progress * in progress * in progress * in progress * in progress * in progress * fixing compile errors * fixing compile errors. * Fix the apiService and exclude nodemodules * Add semicolumn * fix import * fix configuration test package * fix * fix errors * fix typescript * restore packages.json * fix errors after rebase * fix type prolems and add protracotr path mapping * remove undefined
45 lines
885 B
JSON
45 lines
885 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"outDir": "../out-tsc/e2e",
|
|
"baseUrl": ".",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"types": [
|
|
"jasmine",
|
|
"jasminewd2",
|
|
"node"
|
|
],
|
|
"paths": {
|
|
"@alfresco/adf-extensions": [
|
|
"../lib/extensions"
|
|
],
|
|
"@alfresco/adf-core": [
|
|
"../lib/core"
|
|
],
|
|
"@alfresco/adf-content-services": [
|
|
"../lib/content-services"
|
|
],
|
|
"@alfresco/adf-process-services": [
|
|
"../lib/process-services"
|
|
],
|
|
"@alfresco/adf-insights": [
|
|
"../lib/insights"
|
|
],
|
|
"@alfresco/adf-process-services-cloud": [
|
|
"../lib/process-services-cloud"
|
|
],
|
|
"@alfresco/adf-testing": [
|
|
"../lib/testing"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|