mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-13 15:35:20 +01:00
[json] fix sourcemaps
This commit is contained in:
Vendored
+2
-2
@@ -10,8 +10,8 @@
|
||||
"--extensionDevelopmentPath=${workspaceRoot}"
|
||||
],
|
||||
"stopOnEntry": false,
|
||||
"sourceMaps": false,
|
||||
"outDir": "${workspaceRoot}/out",
|
||||
"sourceMaps": true,
|
||||
"outDir": "${workspaceRoot}/client/out",
|
||||
"preLaunchTask": "npm"
|
||||
}
|
||||
]
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
"noLib": true,
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"sourceMap": false,
|
||||
"sourceMap": true,
|
||||
"sourceRoot": "../src",
|
||||
"outDir": "./out"
|
||||
},
|
||||
"exclude": [
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
],
|
||||
"main": "./client/out/jsonMain",
|
||||
"scripts": {
|
||||
"compile": "gulp compile-extension:json-client"
|
||||
"compile": "gulp compile-extension:json-client && gulp compile-extension:json-server"
|
||||
},
|
||||
"contributes": {
|
||||
"languages": [
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
/// <reference path='../../../../../src/typings/mocha.d.ts'/>
|
||||
/// <reference path='../../../../../extensions/node.d.ts'/>
|
||||
/// <reference path='../../../../../extensions/lib.core.d.ts'/>
|
||||
@@ -4,6 +4,7 @@
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"sourceMap": true,
|
||||
"sourceRoot": "../src",
|
||||
"outDir": "./out"
|
||||
},
|
||||
"exclude": [
|
||||
|
||||
Reference in New Issue
Block a user