Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyinws committed Apr 28, 2024
1 parent 6e9f5af commit fcbfe17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Nuxt Module Intellisense",
"version": "0.0.1",
"private": true,
"description": "",
"description": "Intelligent Nuxt Module autocompletes for VS Code",
"author": "yuyinws",
"license": "MIT",
"homepage": "https://github.com/yuyinws/nuxt-module-intellisense#readme",
Expand Down
4 changes: 4 additions & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { defineConfig } from 'tsup'
import { dependencies } from './package.json'

const deps = Object.keys(dependencies)

export default defineConfig({
entry: [
'src/index.ts',
],
format: ['cjs'],
noExternal: deps,
shims: false,
dts: false,
external: [
Expand Down

0 comments on commit fcbfe17

Please sign in to comment.