The .gitignore was set up to skip tsc's compiled .d.ts output but it also matched the hand-written ambient declarations file added in the previous commit. Add a negation rule so that one file is tracked. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 lines
219 B
Plaintext
9 lines
219 B
Plaintext
plugin/node_modules/
|
|
plugin/dist/
|
|
plugin/**/*.js
|
|
plugin/**/*.js.map
|
|
plugin/**/*.d.ts
|
|
plugin/**/*.d.ts.map
|
|
# Hand-written ambient declarations are tracked; only compiled .d.ts above is ignored.
|
|
!plugin/openclaw-sdk.d.ts
|