Skip to content

Commit

Permalink
exclude some files
Browse files Browse the repository at this point in the history
  • Loading branch information
lmdulz committed Oct 9, 2024
1 parent 7e8cf0d commit a017793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"tsBuildInfoFile": ".tsbuildinfo"
},
"include": ["types/**/*"],
"exclude": ["node_modules", "public"]
"exclude": ["node_modules", "public", "src/loader.ts", "**/demo/**"]
}
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "tsup";

export default defineConfig({
entry: ["src/*.ts"],
entry: ["src/*.ts", '!src/loader.ts'],
format: ["cjs", "esm"],
dts: true,
sourcemap: true,
Expand Down

0 comments on commit a017793

Please sign in to comment.