Skip to content

Commit

Permalink
Configure vite
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Bolton <ibolton@redhat.com>
  • Loading branch information
ibolton336 committed Oct 18, 2024
1 parent f1b0606 commit b96dc7e
Show file tree
Hide file tree
Showing 43 changed files with 7,398 additions and 5,215 deletions.
5 changes: 1 addition & 4 deletions vscode/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
"type": "extensionHost",
"request": "launch",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": [
"${workspaceFolder}/out/**/*.js",
"!${workspaceFolder}/out/webview/**"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}",
"env": {
"VSCODE_DEBUG_MODE": "true"
Expand Down
52 changes: 16 additions & 36 deletions vscode/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,20 @@
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$ts-webpack-watch",
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "watchers"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "npm",
"script": "watch-tests",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never",
"group": "watchers"
},
"group": "build"
},
{
"label": "tasks: watch-tests",
"dependsOn": [
"npm: watch",
"npm: watch-tests"
],
"problemMatcher": []
}
]
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Binary file removed vscode/assets/kantra
Binary file not shown.
8 changes: 7 additions & 1 deletion vscode/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ export default [
react.configs.flat.recommended,
prettierRecommended,
{
files: ["**/*.js", "**/*.jsx", "**/*.cjs", "**/*.mjs", "**/*.ts", "**/*.tsx"],
files: [
"./webview-ui/**/*.ts",
"./webview-ui/**/*.tsx",
"./webview-ui/**/*.js",
"./webview-ui/**/*.jsx",
"./webview-ui/**/*.mjs",
],
},
{
plugins: {
Expand Down
3 changes: 0 additions & 3 deletions vscode/media/styles.css

This file was deleted.

Loading

0 comments on commit b96dc7e

Please sign in to comment.