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
Having a separate package.json for both the client and server side of the application removes these errors. This will result in having a node_modules both in the root and in the public directory after running npm install in both directories, this is something we might want to do in the future.
Step 5 from README.MD:
When compiling typescript in the public folder we receive the following errors:
controllers/editor.ts(1,61): error TS2307: Cannot find module 'angular2/core'.
controllers/editor.ts(2,55): error TS2307: Cannot find module 'angular2/http'.
controllers/editor.ts(3,48): error TS2307: Cannot find module 'angular2/common'.
controllers/editor.ts(4,32): error TS2307: Cannot find module 'angular2/core'.
controllers/index.ts(1,25): error TS2307: Cannot find module 'angular2/platform/browser'.
controllers/index.ts(3,48): error TS2307: Cannot find module 'angular2/common'.
controllers/index.ts(4,29): error TS2307: Cannot find module 'angular2/http'.
But it is still possible to run the skeleton successfully. We are investigating this issue.
The text was updated successfully, but these errors were encountered: