Files
astronomy/generate/tsconfig.main.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

14 lines
290 B
JSON

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