Skip to content

Commit

Permalink
fix: export directives in production build (#1271)
Browse files Browse the repository at this point in the history
* fix: export directives in production build

* include in tsconfig
  • Loading branch information
braddialpad authored Oct 20, 2023
1 parent 32347ab commit b34febb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"recipes/**/*.vue",
"index.js",
"emoji.js",
"directives.js",
"message_input.js"
],
"exclude": [
Expand All @@ -33,4 +34,4 @@
"path": "./tsconfig.config.json"
}
]
}
}
1 change: 1 addition & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default defineConfig({
'dialtone-vue': resolve(__dirname, './index.js'),
emoji: resolve(__dirname, './emoji.js'),
message_input: resolve(__dirname, './message_input.js'),
directives: resolve(__dirname, './directives.js'),
},
},
rollupOptions: {
Expand Down

0 comments on commit b34febb

Please sign in to comment.