mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* switch js-api builds to original node.js * [ci:force] cleanup ts configs * [ci:force] remove temp hotfix for js-api * remove dead code
25 lines
712 B
JSON
25 lines
712 B
JSON
{
|
|
"compilerOptions": {
|
|
"importHelpers": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"stripInternal": false,
|
|
"target": "es2015",
|
|
"outDir": "./.out",
|
|
"lib": ["es2018", "dom"],
|
|
"typeRoots": ["node_modules/@types"],
|
|
"types": []
|
|
},
|
|
"exclude": [".history", "*/node_modules", "config", "performance", "coverage", "node_modules", "package", "dist", "test"]
|
|
}
|