Skip to content

Commit

Permalink
Fixing types and dev dependency issue (#26)
Browse files Browse the repository at this point in the history
* fix: added github workflow

* fix: added specs workflow for PR

* fix: fixed exception messages for tests

* fix: updated package version

* fix: updated package version

* fix: reverted package version

* fix: fixing build issue

* fix: fixing build issue

* fix: fixing build issue

* fix: fixing type issues

* fix: fixing build issues

* fix: fixing build issues

* fix: fixing type issues

* fix: fixing type issues

* fix: fixing type issues

* fix: fixing the types and dev dependencies issues
  • Loading branch information
RambhauWaykar authored Sep 6, 2024
1 parent 935c855 commit a564bc9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@syngenta/convert-to-geojson",
"version": "1.0.6",
"version": "1.0.7",
"description": "A common package to convert different shape files to geojson",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"types": "dist/index.d.ts",
"homepage": "",
"keywords": [],
"author": "Ram Waykar <Waykar_Rambhau.Pandurang@syngenta.com>",
Expand All @@ -17,7 +17,7 @@
"test": "jest --ci --coverage --reporters=default --reporters=jest-junit --max-workers=2 --testTimeout=300000 --verbose",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"build": "npm run lint && tsc --declaration"
"build": "npm run lint && tsc --declaration --declarationMap --sourceMap"
},
"dependencies": {
"@mapbox/togeojson": "^0.16.2",
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
"compilerOptions": {
"strict": true,
"target": "ES6",
"lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include"],
"module": "preserve",
"outDir": "dist",
"sourceMap": false,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames":true,
Expand Down

0 comments on commit a564bc9

Please sign in to comment.