Navigation Menu

Skip to content

Commit

Permalink
fix(js): use outDir to avoid ambient type definition creation (#1396)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanVS committed Jun 9, 2022
1 parent fa4587a commit 4c924bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docsearch-js/package.json
Expand Up @@ -23,7 +23,7 @@
"scripts": {
"build:clean": "rm -rf ./dist",
"build:esm": "cross-env BUILD=esm rollup --config",
"build:types": "tsc -p ./tsconfig.declaration.json --outFile ./dist/esm/index.d.ts",
"build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/esm",
"build:umd": "cross-env BUILD=umd rollup --config",
"build": "yarn build:clean && yarn build:umd && yarn build:esm && yarn build:types",
"on:change": "concurrently \"yarn build:esm\" \"yarn build:types\"",
Expand Down

0 comments on commit 4c924bc

Please sign in to comment.