You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2021. It is now read-only.
in app.module.ts change some of the imports to use invalid path
the compilation stops on the error which is expected
fix the error
in item.services.ts change import { Item } to use invalid path
Result:
ERROR in src/app/item/item.service.ts(3,22): error TS2307: Cannot find module './items'. but the compilation doesn't stop as expected.
Second scenario:
9. In the same app fix the previous error
10. in app.module.ts change something in the declarations: section
Result: No stop on error. The app is deployed and crashes
Additional context
Not reproducible with [email protected]
It is reproducible with run android too
The text was updated successfully, but these errors were encountered:
Environment
CLI: @next
Plugin(s): nativescript-dev-webpack@next
To Reproduce
First scenario:
tns create app --ng
npm i nativescript-dev-webpack@next --save-dev --save-exact
node_modules/.bin/update-ns-webpack --deps --configs
tns run ios
in
app.module.ts
change some of the imports to use invalid paththe compilation stops on the error which is expected
fix the error
in
item.services.ts
changeimport { Item }
to use invalid pathResult:
ERROR in src/app/item/item.service.ts(3,22): error TS2307: Cannot find module './items'. but the compilation doesn't stop as expected.
Second scenario:
9. In the same app fix the previous error
10. in
app.module.ts
change something in thedeclarations:
sectionResult: No stop on error. The app is deployed and crashes
Additional context
Not reproducible with [email protected]
It is reproducible with
run android
tooThe text was updated successfully, but these errors were encountered: