mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
* Create the adf-cli command init-aae-env * Remove the test app * Add basic doc for the init-aae-env command
38 lines
695 B
JSON
38 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"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/**/*",
|
|
"**/node_modules/**/*"
|
|
|
|
]
|
|
}
|