Files
astronomy/generate/tsconfig.module.json
Mateo Tibaquira 992aaf4ea1 JS: Library capable of tree-shaking
I found that the Angular bundles had all the astronomy-engine library for a total of 90.62Kb
after this change Angular is able to reduce the demo module to 54.56Kb

Based on https://toastui.medium.com/building-a-ui-library-capable-of-tree-shaking-from-a-to-z-b3f8a9be589f
2021-02-08 20:09:17 -05:00

12 lines
236 B
JSON

{
"compilerOptions": {
"outDir": "../source/js/esm/",
"moduleResolution": "node",
"target": "es6",
"strict": true,
"lib": ["dom", "es6"]
},
"files": [
"../source/js/astronomy.ts"
]
}