mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-04-23 22:30:37 +00:00
* update targets * update targets * fixed FormService propagation [ci:force] * fixed FormService propagation [ci:force]
31 lines
863 B
JSON
31 lines
863 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"declarationMap": true,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "../../dist/libs/cli",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"target": "es2022",
|
|
"lib": ["es2022", "dom"],
|
|
"baseUrl": ".",
|
|
"typeRoots": ["node_modules/@types", "../../node_modules/@types"],
|
|
"types": ["node"],
|
|
"paths": {
|
|
"@alfresco/js-api": ["../../dist/libs/js-api"],
|
|
"@alfresco/js-api/*": ["../../dist/libs/js-api/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist/**/*", "./build.ts", "node_modules"]
|
|
}
|