[ACA-3593] fix library builds (#1593)

* upgrade to solution style tsconfig

* remove missing path

* add e2e config to the solution

* fix config path
This commit is contained in:
Denys Vuika
2020-08-11 17:13:22 +01:00
committed by GitHub
parent cf4af3bab5
commit b86db21e93
11 changed files with 94 additions and 84 deletions

View File

@@ -1,21 +1,15 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/e2e",
"baseUrl": "./",
"module": "commonjs",
"target": "es2017",
"types": [
"jasmine",
"jasminewd2",
"node"
],
"types": ["jasmine", "jasminewd2", "node"],
"skipLibCheck": true,
"paths": {
"@alfresco/aca-testing-shared": ["../projects/aca-testing-shared"]
}
},
"exclude": [
"node_modules"
]
"exclude": ["node_modules"]
}