Skip to content

Commit 915db4c

Browse files
committed
fix(test): Add .gitignore and update tsconfig after migration
- Add .gitignore to plugins/ui5/ (required by structure tests) - Update moduleResolution to 'bundler' (modern TypeScript) - Update package-lock.json with installed dependencies - All structure tests now pass (14/14) - Triggering simulation tests: 84.4% (proxy tests, not real Claude behavior)
1 parent b0265c3 commit 915db4c

3 files changed

Lines changed: 28 additions & 374 deletions

File tree

plugins/ui5/.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Build output
2+
dist/
3+
4+
# Dependencies
5+
node_modules/
6+
7+
# Test output
8+
.test-output/
9+
.test-results/
10+
11+
# Environment
12+
.env
13+
.env.local
14+
15+
# IDE
16+
.vscode/
17+
.idea/
18+
19+
# OS
20+
.DS_Store

0 commit comments

Comments
 (0)