jmapcloud-ng-types 0.4.1 → 0.4.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/package.json +7 -7
- package/.prettierrc +0 -10
- package/tsconfig.json +0 -19
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jmapcloud-ng-types",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
|
|
5
5
|
"main": "src/app.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
-
"pub": "export NODE_ENV='production';
|
|
9
|
-
"copy": "export NODE_ENV='production';
|
|
10
|
-
"commit-doc": "export NODE_ENV='production';
|
|
11
|
-
"doc-test": "export DOC_DIR='./docs/latest';
|
|
8
|
+
"pub": "export NODE_ENV='production'; node build/buildfile.js publish;",
|
|
9
|
+
"copy": "export NODE_ENV='production'; node build/buildfile.js copy;",
|
|
10
|
+
"commit-doc": "export NODE_ENV='production'; node build/buildfile.js commit-doc;",
|
|
11
|
+
"doc-test": "export DOC_DIR='./docs/latest'; node build/buildfile.js doc-test;",
|
|
12
|
+
"copy-latest": "node build/buildfile.js copy-latest;"
|
|
12
13
|
},
|
|
13
14
|
"repository": {
|
|
14
15
|
"type": "git",
|
|
@@ -22,8 +23,7 @@
|
|
|
22
23
|
"homepage": "https://github.com/k2geospatial/jmapcloud-ng-types#readme",
|
|
23
24
|
"devDependencies": {
|
|
24
25
|
"@types/react": "18.2.21",
|
|
25
|
-
"
|
|
26
|
-
"jmapcloud-ng-core-types": "0.4.0",
|
|
26
|
+
"jmapcloud-ng-core-types": "0.4.5",
|
|
27
27
|
"maplibre-gl": "^3.2.1",
|
|
28
28
|
"react": "^18.2.0",
|
|
29
29
|
"typedoc": "^0.24.8"
|
package/.prettierrc
DELETED
package/tsconfig.json
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"outDir": "./out",
|
|
4
|
-
"baseUrl": "./",
|
|
5
|
-
"types": ["maplibre-gl", "react"],
|
|
6
|
-
"strict": true,
|
|
7
|
-
"allowSyntheticDefaultImports": true, // needed for MapLibre https://www.typescriptlang.org/tsconfig#allowSyntheticDefaultImports
|
|
8
|
-
"sourceMap": true,
|
|
9
|
-
"noImplicitAny": true,
|
|
10
|
-
"moduleResolution": "node",
|
|
11
|
-
"module": "esnext",
|
|
12
|
-
"target": "ES2022",
|
|
13
|
-
"jsx": "react",
|
|
14
|
-
"lib": [
|
|
15
|
-
"ES5","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","DOM"
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
"include": ["./public/**/*", "./index.ts", "./all-enums.ts"]
|
|
19
|
-
}
|