mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-15 10:15:04 +01:00
* Adapt TypeScript 7 * Ensure that we always call TS7 from spawnTsgo * Fix package lock file * tsc - tsc6 * More tsc -> tsc6 * More TSGO conversion * More moves from tsgo -> tsc * Fix tsgo resolving in extension folder * Call TS7 compiler directly * Update package-lock.json * Remove tsc:version again
24 lines
736 B
JSON
24 lines
736 B
JSON
{
|
|
"name": "code-oss-dev-smoke-test",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"main": "./src/main.js",
|
|
"scripts": {
|
|
"compile": "cd ../automation && npm run compile && cd ../smoke && node ../../node_modules/typescript/bin/tsc6",
|
|
"watch-automation": "cd ../automation && npm run watch",
|
|
"watch-smoke": "node ../../node_modules/typescript/bin/tsc6 --watch --preserveWatchOutput",
|
|
"watch": "npm-run-all2 -lp watch-automation watch-smoke",
|
|
"mocha": "node ../node_modules/mocha/bin/mocha"
|
|
},
|
|
"dependencies": {
|
|
"ncp": "^2.0.0",
|
|
"node-fetch": "^2.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ncp": "2.0.1",
|
|
"@types/node": "24.x",
|
|
"@types/node-fetch": "^2.5.10",
|
|
"npm-run-all2": "^8.0.4"
|
|
}
|
|
}
|