mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-15 02:07:31 +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
28 lines
694 B
JSON
28 lines
694 B
JSON
{
|
|
"name": "test-monaco",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "node ../../node_modules/typescript/bin/tsc6",
|
|
"bundle-webpack": "webpack --config ./webpack.config.js --bail",
|
|
"esm-check": "node esm-check/esm-check.js",
|
|
"test": "node runner.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.14",
|
|
"axe-playwright": "^2.1.0",
|
|
"chai": "^4.2.0",
|
|
"css-loader": "^6.9.1",
|
|
"file-loader": "^6.2.0",
|
|
"style-loader": "^3.3.2",
|
|
"warnings-to-errors-webpack-plugin": "^2.3.0",
|
|
"webpack": "^5.105.0",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"postcss": "^8.5.12"
|
|
}
|
|
}
|