Skip to content

Commit

Permalink
Fix package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
reilem committed Feb 23, 2024
1 parent a336745 commit e772e5a
Show file tree
Hide file tree
Showing 3 changed files with 144 additions and 3 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@
"geojson",
"schema"
],
"main": "index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --build --clean && tsc -p tsconfig.build.json",
"clean": "rimraf lib",
"build": "pnpm clean && tsc -p tsconfig.build.json",
"typecheck": "tsc"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "~5.3.3",
"zod": "^3.22.4"
Expand Down
138 changes: 138 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es6",
"target": "es5",
"moduleResolution": "node",
"outDir": "lib",
"noEmit": true,
Expand Down

0 comments on commit e772e5a

Please sign in to comment.