mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ADF-4733] Create an adf-cli dispatcher to run the docker-publish (#4914)
* Create an adf-cli dispatcher to run the docker-publish * not needed * fix typo comma * Create the adf-cli dist folder that contains -bin -script -package.json Build the dist folder during the ADF CI/CI pipeline
This commit is contained in:
committed by
Eugenio Romano
parent
fadcc19eba
commit
a6e18e6c1b
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"declaration": true,
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"noEmitOnError": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"noUnusedParameters": false, // The linter is used for these.
|
||||
"noUnusedLocals": false, // The linter is used for these.
|
||||
"outDir": "./dist",
|
||||
"rootDir": ".",
|
||||
"skipLibCheck": true,
|
||||
"strictNullChecks": true,
|
||||
"target": "es2018",
|
||||
"lib": [
|
||||
"es2018"
|
||||
],
|
||||
"baseUrl": ".",
|
||||
"typeRoots": [
|
||||
"./node_modules/@types"
|
||||
],
|
||||
"types": [
|
||||
"node"
|
||||
],
|
||||
"paths": {
|
||||
}
|
||||
},
|
||||
"exclude": [
|
||||
"dist/**/*",
|
||||
"./build.ts",
|
||||
"node_modules/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user