| Both sides previous revision Previous revision Next revision | Previous revision |
| public:computer:vscode [2023/01/03 11:55] – alex | public:computer:vscode [2024/04/30 00:33] (current) – ↷ Links adapted because of a move operation 3.12.71.237 |
|---|
| |
| |
| {{page>public:computer:macos_shortcuts#editing}} | {{page>public:computer:macos#editing}} |
| |
| |
| } | } |
| </sxh> | </sxh> |
| * Run with nodemon; <sxh bash> | * Run with nodemon (live compile environment); <sxh bash> |
| $ npm install ts-node --save-dev | $ npm install ts-node --save-dev |
| $ npm install nodemon --save-dev | $ npm install nodemon --save-dev |
| </sxh> | </sxh> |
| * package.json <sxh json> | * package.json <sxh json> |
| "scripts": { | { |
| | "name": "typescript", |
| | "version": "1.0.0", |
| | "description": "", |
| | "main": "index.js", |
| | "scripts": { |
| "start": "npm run build:live", | "start": "npm run build:live", |
| "build": "tsc -p .", | "build": "tsc -p .", |
| "build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts" | "build:live": "nodemon --watch '*.ts' --exec 'ts-node' hello.ts", |
| | "test": "echo \"Error: no test specified\" && exit 1" |
| | }, |
| | "keywords": [], |
| | "author": "", |
| | "license": "ISC", |
| | "devDependencies": { |
| | "nodemon": "^2.0.20", |
| | "ts-node": "^9.1.1", |
| | "typescript": "^4.2.4" |
| } | } |
| | } |
| | |
| </sxh> | </sxh> |
| |
| * [[https://marketplace.visualstudio.com/items?itemName=twxs.cmake|CMake (twxs)]] CMake For VisualStudio Code | * [[https://marketplace.visualstudio.com/items?itemName=twxs.cmake|CMake (twxs)]] CMake For VisualStudio Code |
| * [[https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools|CMake Tools (Microsoft)]] CMake Tools | * [[https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools|CMake Tools (Microsoft)]] CMake Tools |
| | |
| | |
| | |
| | |
| | ==== PHP ==== |
| | * [[https://marketplace.visualstudio.com/items?itemName=xdebug.php-pack|PHP Extension Pack (Xdebug)]] |
| | * [[https://marketplace.visualstudio.com/items?itemName=xdebug.php-debug|PHP Debug (Xdebug)]] |
| | * [[https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client|PHP Intelephense (Ben Mewburn)]] |
| |
| |