Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

- `npm run build` - Compiles TypeScript using `tsc --project tsconfig.build.json`
- `npm run dev` - Runs TypeScript compiler in watch mode
- `npm run clean` - Removes the `dist/` directory
- `npm run clean` - Removes the `dist/` directory and the TypeScript incremental build info files

### Testing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"type": "module",
"scripts": {
"build": "node ./node_modules/typescript-native/bin/tsc --project tsconfig.build.json",
"clean": "rm -rf dist/",
"clean": "rm -rf dist/ tsconfig.build.tsbuildinfo tsconfig.tsbuildinfo",
"dev": "node ./node_modules/typescript-native/bin/tsc --project tsconfig.build.json --watch",
"docs": "npm run --prefix=site build",
"format": "oxfmt --write",
Expand Down
Loading