Remove more vestiges of old webpack build
This commit is contained in:
Родитель
1103a3b840
Коммит
cfa8ab12f3
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"target": "ES6",
|
||||
"sourceMap": true,
|
||||
"outDir": "../out",
|
||||
"noImplicitThis": true
|
||||
}
|
||||
}
|
12
package.json
12
package.json
|
@ -62,15 +62,9 @@
|
|||
"onCommand:extension.chrome-debug.toggleSkippingFile"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "concurrently \"npm run build:debugadapter\" \"npm run build:test\" \"npm run build:outOfBundle\"",
|
||||
"build:debugadapter": "gulp build",
|
||||
"build:test": "tsc -p test/tsconfig.json",
|
||||
"build:outOfBundle": "tsc -p outOfBundle/tsconfig.json",
|
||||
"watch": "concurrently \"npm run watch:debugadapter\" \"npm run watch:test\" \"npm run watch:outOfBundle\"",
|
||||
"watch:debugadapter": "gulp watch",
|
||||
"watch:test": "tsc -p test/tsconfig.json -w",
|
||||
"watch:outOfBundle": "tsc -p outOfBundle/tsconfig.json -w",
|
||||
"start": "node out/bundle.js --server=4712",
|
||||
"build": "gulp build",
|
||||
"watch": "gulp watch",
|
||||
"start": "node out/src/chromeDebug.js --server=4712",
|
||||
"test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"",
|
||||
"intTest": "mocha --timeout 20000 -s 3500 -u tdd --colors --reporter node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js ./out/test/int/*.test.js",
|
||||
"lint": "tslint -t verbose \"src/**/*.ts\"",
|
||||
|
|
|
@ -299,12 +299,7 @@ export function resolveWebRootPattern(webRoot: string, sourceMapPathOverrides: I
|
|||
}
|
||||
|
||||
function getChromeSpawnHelperPath(): string {
|
||||
if (path.basename(__dirname) === 'src') {
|
||||
// For tests
|
||||
return path.join(__dirname, '../chromeSpawnHelper.js');
|
||||
} else {
|
||||
return path.join(__dirname, 'chromeSpawnHelper.js');
|
||||
}
|
||||
return path.join(__dirname, '../chromeSpawnHelper.js');
|
||||
}
|
||||
|
||||
function findExecutable(program: string): string | undefined {
|
||||
|
|
|
@ -8,8 +8,9 @@
|
|||
"outDir": "out",
|
||||
"noImplicitThis": true
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
"node_modules/@types/**/*.ts"
|
||||
"exclude": [
|
||||
"node_modules/",
|
||||
"testapp/",
|
||||
"testdata/"
|
||||
]
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче