Skip to content

Commit

Permalink
Added
Browse files Browse the repository at this point in the history
  • Loading branch information
nokibsarkar committed Jun 7, 2023
1 parent 8cbac34 commit f7dddd1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ yarn-error.log*

.idea/

esm
lib
dist
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"scripts": {
"test": "tsc --noEmit",
"build": "npm run build-cjs && npm run build-esm",
"build-cjs": "rimraf ./dist/cjs && tsc --outDir dist/cjs",
"build-esm": "rimraf ./dist/esm && tsc --outDir dist/esm --module es2015",
"watch": "tsc --outDir dist/esm --module es2015 --watch"
"build-cjs": "rimraf ./dist/cjs && tsc --outDir dist/cjs --module commonjs",
"build-esm": "rimraf ./dist/esm && tsc --outDir dist/esm --module es6",
"watch": "tsc --outDir dist/esm --module es6 --watch"
},
"dependencies": {
"ra-core": "^4.10.3"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "lib",
"outDir": "dist",
"rootDir": "src",
"skipLibCheck": true,
"strict": true,
Expand Down

0 comments on commit f7dddd1

Please sign in to comment.