File tree Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Expand file tree Collapse file tree 5 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 33.index /
44* .log
55.idea /
6- .vscode /
7- coverage /
6+ coverage /
7+ .vscode /*
8+ ! .vscode /launch.json
Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible 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" : " attach" ,
10+ "name" : " Docker: Attach to Node" ,
11+ "remoteRoot" : " /api" ,
12+ "port" : 9229 ,
13+ "skipFiles" : [
14+ " <node_internals>/**"
15+ ],
16+ "restart" : true
17+ }
18+ ]
19+ }
Original file line number Diff line number Diff line change 11services :
22 api :
3- command : bash -c "yarn install && yarn debug"
3+ command : bash -c "yarn install && yarn debug"
4+ ports :
5+ - 9229:9229
6+
Original file line number Diff line number Diff line change 6161 "start" : " node . --transpile-only --files .| pino-pretty -c -l" ,
6262 "build" : " tsc -p tsconfig.prod.json" ,
6363 "dev" : " tsnd --transpile-only --files src/index.ts | pino-pretty -c -l" ,
64- "debug" : " tsnd --transpile-only --inspect --files src/index.ts | pino-pretty -c -l" ,
64+ "debug" : " tsnd --transpile-only --inspect=0.0.0.0:9229 --nolazy --files src/index.ts | pino-pretty -c -l" ,
6565 "cli" : " tsnd --transpile-only --files src/index.ts --cli" ,
6666 "remote" : " ts-node bin/replClient.ts" ,
6767 "test" : " jest"
Original file line number Diff line number Diff line change 88 "outDir" : " ./dist" ,
99 "rootDir" : " ./src" ,
1010 "removeComments" : false ,
11+ "inlineSourceMap" : true ,
1112 "strict" : true ,
1213 "noImplicitAny" : false ,
1314 "noUnusedLocals" : true ,
You can’t perform that action at this time.
0 commit comments