Skip to content

Commit 0f673f9

Browse files
Copilothotlong
andcommitted
Fix pnpm test and improve TypeScript config
- Remove test scripts from plugin packages (no test files exist) - Set noImplicitAny to true for better type safety - All tests now pass successfully Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent d1fe645 commit 0f673f9

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

packages/plugin-charts/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
}
1515
},
1616
"scripts": {
17-
"build": "vite build",
18-
"test": "vitest run"
17+
"build": "vite build"
1918
},
2019
"dependencies": {
2120
"recharts": "^3.6.0",

packages/plugin-charts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"paths": {
88
"@/*": ["src/*"]
99
},
10-
"noImplicitAny": false,
10+
"noImplicitAny": true,
1111
"noEmit": false,
1212
"declaration": true,
1313
"composite": true,

packages/plugin-editor/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
}
1515
},
1616
"scripts": {
17-
"build": "vite build",
18-
"test": "vitest run"
17+
"build": "vite build"
1918
},
2019
"dependencies": {
2120
"@monaco-editor/react": "^4.6.0",

packages/plugin-editor/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"paths": {
88
"@/*": ["src/*"]
99
},
10-
"noImplicitAny": false,
10+
"noImplicitAny": true,
1111
"noEmit": false,
1212
"declaration": true,
1313
"composite": true,

0 commit comments

Comments
 (0)