plugin: Add basic loading test

Will work on testing overlay next.
This commit is contained in:
Anmol Sethi
2020-10-30 03:18:59 -04:00
parent e08a55d44a
commit bea185b8b2
7 changed files with 580 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"private": true,
"name": "test-plugin",
"version": "1.0.0",
"description": "Fake plugin for testing code-server's plugin API",
"engines": {
"code-server": "^3.6.0"
},
"main": "out/index.js",
"devDependencies": {
"@types/express": "^4.17.8",
"typescript": "^4.0.5"
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"express": "^4.17.1"
}
}