init project with typescript
parents
Showing
.eslintrc.json
0 → 100644
.gitignore
0 → 100644
.vscode/extensions.json
0 → 100644
.vscode/launch.json
0 → 100644
.vscode/settings.json
0 → 100644
.vscode/tasks.json
0 → 100644
.vscodeignore
0 → 100644
CHANGELOG.md
0 → 100644
README.md
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
| { | ||
| "name": "my-cli", | ||
| "displayName": "my-cli", | ||
| "description": "A tool to generate frontend project with template", | ||
| "version": "0.0.1", | ||
| "engines": { | ||
| "vscode": "^1.57.0" | ||
| }, | ||
| "categories": [ | ||
| "Other" | ||
| ], | ||
| "activationEvents": [ | ||
| "onCommand:my-cli.helloWorld" | ||
| ], | ||
| "main": "./dist/extension.js", | ||
| "contributes": { | ||
| "commands": [ | ||
| { | ||
| "command": "my-cli.helloWorld", | ||
| "title": "Hello World" | ||
| } | ||
| ] | ||
| }, | ||
| "scripts": { | ||
| "vscode:prepublish": "npm run package", | ||
| "compile": "webpack", | ||
| "watch": "webpack --watch", | ||
| "package": "webpack --mode production --devtool hidden-source-map", | ||
| "test-compile": "tsc -p ./", | ||
| "test-watch": "tsc -watch -p ./", | ||
| "pretest": "npm run test-compile && npm run lint", | ||
| "lint": "eslint src --ext ts", | ||
| "test": "node ./out/test/runTest.js" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/glob": "^7.1.3", | ||
| "@types/mocha": "^8.2.2", | ||
| "@types/node": "14.x", | ||
| "@types/vscode": "^1.57.0", | ||
| "@typescript-eslint/eslint-plugin": "^4.26.0", | ||
| "@typescript-eslint/parser": "^4.26.0", | ||
| "eslint": "^7.27.0", | ||
| "glob": "^7.1.7", | ||
| "mocha": "^8.4.0", | ||
| "ts-loader": "^9.2.2", | ||
| "typescript": "^4.3.2", | ||
| "vscode-test": "^1.5.2", | ||
| "webpack": "^5.38.1", | ||
| "webpack-cli": "^4.7.0" | ||
| } | ||
| } |
src/extension.ts
0 → 100644
src/test/runTest.ts
0 → 100644
src/test/suite/index.ts
0 → 100644
tsconfig.json
0 → 100644
vsc-extension-quickstart.md
0 → 100644
webpack.config.js
0 → 100644
Please
register
or
sign in
to comment