mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
26 lines
540 B
JSON
26 lines
540 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"target": "ES2020",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ESNext"],
|
|
"types": ["node"],
|
|
"baseUrl": "../../",
|
|
"paths": {
|
|
"@alfresco/js-api": ["lib/js-api/src/index.ts"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"transpileOnly": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"exclude": [],
|
|
"include": ["**/*"]
|
|
}
|