mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
* Move the resources in the cloud lib * Use adf cli * Add missing process definitions * Add debug points * Print new class * Use the resources under the adf-testing * Use the resources from testing package * Fix adf-testing bugs * remove empty row * Remove the npm install * Remove log stuff * Remove the console log * Fix typo on process def names Improve the debug e2e command * Fix lowercase name * Check the process cloud env and content env * Add the new process definitions * Add missing process definitions * Use the latest simpleapp * Rollback the bigFile * Use relative link * Trasnpile the adf-testing before using it
44 lines
901 B
JSON
44 lines
901 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": false,
|
|
"noLib": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"strict": false,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitUseStrict": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"removeComments": true,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"baseUrl": "./",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"types": [
|
|
"node"
|
|
],
|
|
"paths": {
|
|
}
|
|
},
|
|
"exclude": [
|
|
"dist/**/*",
|
|
"./build.ts",
|
|
"node_modules/**/*",
|
|
"**/node_modules/**/*"
|
|
]
|
|
}
|