Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Glen Buktenica committed Dec 2, 2019
1 parent 97cf253 commit ee24cd7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 20 deletions.
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"unittest": "node_modules/.bin/mocha ./out/unittest/*.unit.test.js --ui=tdd --recursive --colors --timeout=300000"
"test": "npm run compile && node ./out/test/runTest.js",
"unittest": "npm run compile && node ./node_modules/.bin/mocha ./out/unittest/*.unit.test.js --ui=tdd --recursive --colors --timeout=300000"
},
"contributes": {
"configuration": {
Expand Down Expand Up @@ -83,11 +83,10 @@
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.11",
"@types/vscode": "^1.33.0",
"@types/node": "^12.12.14",
"@types/vscode": "^1.40.0",
"diff": ">=4.0.1",
"fstream": ">=1.0.12",
"glob": "^7.1.6",
"mocha": "^6.2.2",
"source-map-support": "^0.5.12",
"tar": ">=5.0.5",
Expand Down
15 changes: 12 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
"es7"
],
"sourceMap": true,
"rootDir": "src",
"resolveJsonModule": true,
"esModuleInterop": true
//"strict": true
},
"exclude": [
"node_modules"
"node_modules",
".vscode-test"
],
"include": [
"src/**/*.ts",
"src/test/**/*.ts",
"src/unittest/**/*.ts",
"./node_modules/vscode/vscode.d.ts",
"./node_modules/vscode/lib/*",
]
}

0 comments on commit ee24cd7

Please sign in to comment.