mahal_map 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -6
- package/dist/lib/map/utils.d.ts +1 -1
- package/package.json +1 -1
- package/rollup.config.js +3 -1
- package/tsconfig.json +2 -4
package/dist/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import * as searchUtils from "@lib/search/utils";
|
|
|
4
4
|
import * as routerUtils from "@lib/routing/utils";
|
|
5
5
|
export { Map, keyUtils, searchUtils, routerUtils };
|
|
6
6
|
declare const MahalMap: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
Map: typeof Map;
|
|
8
|
+
keyUtils: typeof keyUtils;
|
|
9
|
+
searchUtils: typeof searchUtils;
|
|
10
|
+
routerUtils: typeof routerUtils;
|
|
11
|
+
loadKeyFromScriptUrl: () => string;
|
|
12
12
|
};
|
|
13
13
|
export default MahalMap;
|
|
14
|
-
//# sourceMappingURL=index.d.ts.map
|
|
14
|
+
//# sourceMappingURL=index.d.ts.map
|
package/dist/lib/map/utils.d.ts
CHANGED
package/package.json
CHANGED
package/rollup.config.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import resolve from "@rollup/plugin-node-resolve";
|
|
2
2
|
import typescript from "@rollup/plugin-typescript";
|
|
3
|
-
import { terser } from "rollup-plugin-terser";
|
|
4
3
|
import commonjs from "@rollup/plugin-commonjs";
|
|
4
|
+
import { terser } from "rollup-plugin-terser";
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
7
|
input: "src/index.ts",
|
|
@@ -30,6 +30,8 @@ export default {
|
|
|
30
30
|
tsconfig: "./tsconfig.json",
|
|
31
31
|
declaration: true,
|
|
32
32
|
declarationDir: "dist",
|
|
33
|
+
rootDir: "src",
|
|
34
|
+
emitDeclarationOnly: true,
|
|
33
35
|
}),
|
|
34
36
|
terser(),
|
|
35
37
|
],
|
package/tsconfig.json
CHANGED
|
@@ -16,10 +16,8 @@
|
|
|
16
16
|
"allowSyntheticDefaultImports": true,
|
|
17
17
|
"paths": {
|
|
18
18
|
"@app/*": ["./src/app/*"],
|
|
19
|
-
"@lib/*": ["./src/lib/*"]
|
|
20
|
-
"*": ["./src/*"]
|
|
19
|
+
"@lib/*": ["./src/lib/*"]
|
|
21
20
|
}
|
|
22
21
|
},
|
|
23
|
-
"include": ["src/**/*.ts"]
|
|
24
|
-
"exclude": ["node_modules"]
|
|
22
|
+
"include": ["src/**/*.ts"]
|
|
25
23
|
}
|