data-structure-typed/tsconfig-esm.json
Revone b16559bc54 feat: Implemented correct TreeMultiMap and AVLTreeMultiMap. Removed support for Raw parameters in the add and delete methods, #115.
fix: Reimplemented the original TreeMultiMap and AVLTreeMultiMap as two new data structures: TreeCounter and AVLTreeCounter, #108.
style: Code cleanup, such as removing unnecessary comments.
docs: Fixed some time complexity and space complexity.
chore: Changed the ESModules build directory to the standard dist/ems.
2024-11-30 13:16:46 +13:00

15 lines
261 B
JSON

{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"rootDir": "./src/",
"outDir": "dist/esm",
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Node",
"sourceMap": true
},
"include": [
"./src/**/*.ts"
]
}