Skip to content

Commit

Permalink
0.10.0-dev.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marihachi committed Jul 29, 2023
1 parent e066f7b commit 5afdf63
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

15 changes: 11 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terrario",
"version": "0.10.0-dev.1",
"version": "0.10.0-dev.2",
"description": "A refined, expressive parser combinator library.",
"license": "MIT",
"author": "Marihachi",
Expand Down Expand Up @@ -32,9 +32,16 @@
"api": "api-extractor run --local --verbose"
},
"exports": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/esm/index.js"
".": {
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
},
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
}
}
},
"devDependencies": {
"@microsoft/api-extractor": "^7.36.3",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "node16",
"declaration": true,
"rootDir": "./src/",
"skipLibCheck": true,
Expand Down

0 comments on commit 5afdf63

Please sign in to comment.