File tree Expand file tree Collapse file tree 5 files changed +30
-13
lines changed Expand file tree Collapse file tree 5 files changed +30
-13
lines changed Original file line number Diff line number Diff line change 10
10
{
11
11
"type" : " shell" ,
12
12
"label" : " watch" ,
13
+ "command" : " npx nx affected --verbose --target=watch --exclude=syntaxes" ,
13
14
"isBackground" : true ,
14
- "command" : " npx nx affected --target=build --exclude=syntaxes -- --watch" ,
15
15
"group" : {
16
16
"kind" : " build" ,
17
17
"isDefault" : true
18
18
},
19
19
"presentation" : {
20
- "panel" : " dedicated" ,
21
- "reveal" : " never"
22
- },
23
- "problemMatcher" : {
24
- "base" : " $ts-webpack-watch" ,
25
- "background" : {
26
- "activeOnStart" : true
27
- }
20
+ "panel" : " dedicated"
28
21
},
22
+ "problemMatcher" : [" $tsc-watch" ],
29
23
"dependsOn" : " build_syntaxes"
30
24
}
31
25
]
Original file line number Diff line number Diff line change 23
23
" CCCP" ,
24
24
" Cortex Command Community Project"
25
25
],
26
- "main" : " dist/packages/client/extension.js" ,
26
+ "main" : " dist/packages/client/src/ extension.js" ,
27
27
"activationEvents" : [],
28
28
"contributes" : {
29
29
"configuration" : {
Original file line number Diff line number Diff line change 33
33
}
34
34
}
35
35
},
36
+ "watch" : {
37
+ "executor" : " @nrwl/js:tsc" ,
38
+ "outputs" : [" {options.outputPath}" ],
39
+ "options" : {
40
+ "outputPath" : " dist/packages/client" ,
41
+ "main" : " packages/client/src/extension.ts" ,
42
+ "tsConfig" : " packages/client/tsconfig.app.json"
43
+ }
44
+ },
36
45
"lint" : {
37
46
"executor" : " @nrwl/linter:eslint" ,
38
47
"outputs" : [" {options.outputFile}" ],
Original file line number Diff line number Diff line change 33
33
}
34
34
}
35
35
},
36
+ "watch" : {
37
+ "executor" : " @nrwl/js:tsc" ,
38
+ "outputs" : [" {options.outputPath}" ],
39
+ "options" : {
40
+ "outputPath" : " dist/packages/server" ,
41
+ "main" : " packages/server/src/sampleServer.ts" ,
42
+ "tsConfig" : " packages/server/tsconfig.app.json"
43
+ }
44
+ },
36
45
"lint" : {
37
46
"executor" : " @nrwl/linter:eslint" ,
38
47
"outputs" : [" {options.outputFile}" ],
Original file line number Diff line number Diff line change 13
13
"paths" : {},
14
14
"noImplicitAny" : true ,
15
15
"noImplicitReturns" : true ,
16
- "noUnusedLocals" : true ,
17
- "noUnusedParameters" : true ,
18
16
"strict" : true ,
19
17
"module" : " commonjs" ,
20
18
"target" : " es2020" ,
23
21
"sourceMap" : true
24
22
},
25
23
"exclude" : [" node_modules" , " tmp" ],
26
- "references" : [{ "path" : " ./client" }, { "path" : " ./server" }]
24
+ "references" : [
25
+ {
26
+ "path" : " ./client"
27
+ },
28
+ {
29
+ "path" : " ./server"
30
+ }
31
+ ]
27
32
}
You can’t perform that action at this time.
0 commit comments