File tree Expand file tree Collapse file tree 8 files changed +32
-0
lines changed Expand file tree Collapse file tree 8 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible Node.js debug attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "type" : " node" ,
9
+ "request" : " launch" ,
10
+ "cwd" : " ${workspaceFolder}/packages/node" ,
11
+ "name" : " Debug @sentry/node" ,
12
+ "preLaunchTask" : " " ,
13
+ "program" : " ${workspaceRoot}/node_modules/.bin/jest" ,
14
+ "args" : [
15
+ " --config" ,
16
+ " ${workspaceRoot}/packages/node/package.json" ,
17
+ " --runInBand" ,
18
+ " ${relativeFile}"
19
+ ],
20
+ "sourceMaps" : true ,
21
+ "smartStep" : true ,
22
+ "outFiles" : [" ${workspaceRoot}/packages/node/dist" ]
23
+ }
24
+ ]
25
+ }
Original file line number Diff line number Diff line change 2
2
"private" : true ,
3
3
"scripts" : {
4
4
"build" : " lerna run --stream --concurrency 1 --sort build" ,
5
+ "build:watch" : " lerna run build:watch --stream --no-sort --concurrency 9999" ,
5
6
"clean" : " lerna run --stream clean" ,
6
7
"fix" : " lerna run --stream --concurrency 1 fix" ,
7
8
"lint" : " lerna run --stream --concurrency 1 lint" ,
Original file line number Diff line number Diff line change 31
31
},
32
32
"scripts" : {
33
33
"build" : " tsc -p tsconfig.build.json" ,
34
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
34
35
"clean" : " rimraf dist coverage" ,
35
36
"lint" : " run-s lint:prettier lint:tslint" ,
36
37
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
Original file line number Diff line number Diff line change 29
29
},
30
30
"scripts" : {
31
31
"build" : " tsc -p tsconfig.build.json" ,
32
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
32
33
"clean" : " rimraf dist coverage" ,
33
34
"lint" : " run-s lint:prettier lint:tslint" ,
34
35
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
Original file line number Diff line number Diff line change 29
29
},
30
30
"scripts" : {
31
31
"build" : " tsc -p tsconfig.build.json" ,
32
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
32
33
"clean" : " rimraf dist coverage" ,
33
34
"lint" : " run-s lint:prettier lint:tslint" ,
34
35
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
Original file line number Diff line number Diff line change 33
33
},
34
34
"scripts" : {
35
35
"build" : " tsc -p tsconfig.build.json" ,
36
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
36
37
"clean" : " rimraf dist coverage" ,
37
38
"lint" : " run-s lint:prettier lint:tslint" ,
38
39
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
Original file line number Diff line number Diff line change 23
23
},
24
24
"scripts" : {
25
25
"build" : " tsc -p tsconfig.build.json" ,
26
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
26
27
"lint" : " run-s lint:prettier lint:tslint" ,
27
28
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
28
29
"lint:tslint" : " tslint -t stylish -p ." ,
Original file line number Diff line number Diff line change 27
27
},
28
28
"scripts" : {
29
29
"build" : " tsc -p tsconfig.build.json" ,
30
+ "build:watch" : " tsc -p tsconfig.build.json -w --preserveWatchOutput" ,
30
31
"clean" : " rimraf dist coverage *.js *.js.map *.d.ts" ,
31
32
"lint" : " run-s lint:prettier lint:tslint" ,
32
33
"lint:prettier" : " prettier-check '{src,test}/**/*.ts'" ,
You can’t perform that action at this time.
0 commit comments