mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2025-01-18 11:14:05 +00:00
b16559bc54
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.
15 lines
261 B
JSON
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"
|
|
]
|
|
}
|