This repository was archived by the owner on Aug 7, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 19
19
"args" : [ " --env.android" , " --env.aot" ],
20
20
"runtimeArgs" : [ " --preserve-symlinks" ],
21
21
"stopOnEntry" : true ,
22
+ },
23
+ {
24
+ "type" : " node" ,
25
+ "request" : " launch" ,
26
+ "name" : " TypeScriptApp Webpack" ,
27
+ "cwd" : " ${workspaceFolder}/demo/TypeScriptApp" ,
28
+ "program" : " ${workspaceFolder}/demo/TypeScriptApp/node_modules/.bin/webpack" ,
29
+ "args" : [ " --env.android" ],
30
+ "stopOnEntry" : true ,
31
+ "preLaunchTask" : " npm:tsc"
22
32
}
23
33
]
24
34
}
Original file line number Diff line number Diff line change
1
+ {
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version" : " 2.0.0" ,
5
+ "tasks" : [
6
+ {
7
+ "label" :" npm:tsc" ,
8
+ "type" : " npm" ,
9
+ "script" : " tsc" ,
10
+ "problemMatcher" : []
11
+ }
12
+ ]
13
+ }
Original file line number Diff line number Diff line change 28
28
"url" : " https://github.com/NativeScript/nativescript-dev-webpack.git"
29
29
},
30
30
"scripts" : {
31
+ "tsc" : " tsc" ,
31
32
"postinstall" : " node postinstall.js" ,
32
33
"preuninstall" : " node preuninstall.js" ,
33
34
"postpack" : " rm -rf node_modules" ,
34
- "prepare" : " tsc && npm run jasmine" ,
35
+ "prepare" : " npm run tsc && npm run jasmine" ,
35
36
"test" : " npm run prepare && npm run jasmine" ,
36
37
"jasmine" : " jasmine --config=jasmine-config/jasmine.json" ,
37
38
"version" : " rm package-lock.json && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
49
50
"clean-webpack-plugin" : " ~1.0.0" ,
50
51
"copy-webpack-plugin" : " ~4.6.0" ,
51
52
"css-loader" : " ~2.1.1" ,
52
- "fork-ts-checker-webpack-plugin" : " 1.3.0" ,
53
53
"extra-watch-webpack-plugin" : " 1.0.3" ,
54
+ "fork-ts-checker-webpack-plugin" : " 1.3.0" ,
54
55
"global-modules-path" : " 2.0.0" ,
55
56
"minimatch" : " 3.0.4" ,
56
57
"nativescript-hook" : " 0.2.4" ,
You can’t perform that action at this time.
0 commit comments