Skip to content

Commit 2e63a2a

Browse files
committed
Add option for incremental build
1 parent ff0691c commit 2e63a2a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
2-
out
2+
out
3+
*.tsbuildinfo

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-typescript-debugging",
33
"version": "1.0.0",
44
"devDependencies": {
5-
"typescript": "^2.7.2"
5+
"typescript": "^3.4.1"
66
},
77
"scripts": {
88
"start": "node out/app.js",

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"outDir": "./out",
44
"rootDir": "./src",
55
"sourceMap": true,
6+
"incremental": true,
67
"moduleResolution": "node",
78
"target": "es5"
89
}

0 commit comments

Comments
 (0)