Skip to content

Commit

Permalink
reduce lune build time by 60%
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowsink committed Sep 20, 2024
1 parent 70ae798 commit 0ba887b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/lune/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"devDependencies": {
"@types/node": "^22.5.5",
"@types/ws": "^8.5.4",
"typescript": "^5.0.2",
"typescript": "^5.6.2",
"esbuild-plugin-solid": "^0.5.0"
},
"dependencies": {
Expand Down
8 changes: 6 additions & 2 deletions packages/lune/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"include": ["src/**/*.ts"],
"include": ["src/**/*.ts", "package.json"],
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"declaration": true,
"outDir": "dist",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"isolatedModules": true,
"composite": true
}
}
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

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

0 comments on commit 0ba887b

Please sign in to comment.