Skip to content

Commit

Permalink
🚧 環境整備
Browse files Browse the repository at this point in the history
  • Loading branch information
wraith13 committed Jul 14, 2022
1 parent 9b9f42d commit dbdca5f
Show file tree
Hide file tree
Showing 10 changed files with 2,517 additions and 2,013 deletions.
13 changes: 1 addition & 12 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,7 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/src/**/*.js" ],
"preLaunchTask": "npm"
},
{
"name": "Launch Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out/test/**/*.js" ],
"outFiles": [ "${workspaceRoot}/out/source/**/*.js" ],
"preLaunchTask": "npm"
}
]
Expand Down
20 changes: 19 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,23 @@
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
"typescript.tsdk": "./node_modules/typescript/lib",
"workbench.colorCustomizations": {
"titleBar.foreground": "#FFF6DE",
"titleBar.background": "#967825",
"statusBarItem.hoverForeground": "#100018",
"minimap.background": "#00000088",
"activityBar.foreground": "#83D7F5",
"activityBar.background": "#00090D",
"activityBar.inactiveForeground": "#006254",
"activityBarBadge.foreground": "#000162",
"activityBarBadge.background": "#A4A5FF",
"statusBar.foreground": "#ECE784",
"statusBar.background": "#6A6401",
"statusBarItem.hoverBackground": "#3B530C",
"statusBarItem.remoteForeground": "#B4FF91",
"statusBarItem.remoteBackground": "#307F0C",
"statusBar.debuggingForeground": "#000000",
"statusBar.debuggingBackground": "#A09B37"
} // we want to use the TS server from our node_modules folder to control its version
}
2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.vscode-test/**
out/test/**
test/**
src/**
source/**
**/*.map
.gitignore
tsconfig.json
Expand Down
Loading

0 comments on commit dbdca5f

Please sign in to comment.