Getting : TS2307: Cannot find module '@spartan-ng/helm/utils' when trying to serve my app #898
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
Hey! Thanks for the report. There are two potential issues at play here; the first, a fix was merged this evening.
"include": [
"src/**/*.ts",
"libs/**/*.ts"
],I hope that helps |
Beta Was this translation helpful? Give feedback.
-
|
Hi! Thank you so much for your quick answer! It was indeed fixed by the version upgrade!! To answer about the utils folder, it indeed didn't exist, so the error I get made sense. So as you mentioned a new fix, I tried upgrading to the latest version I saw on npm: "@spartan-ng/brain": "^0.0.1-alpha.520" and "@spartan-ng/cli": "^0.0.1-alpha.520", and after this I re-ran the npm install command for the spartan Thanks again! |
Beta Was this translation helpful? Give feedback.
-
|
Excellent! Glad that was resolved! |
Beta Was this translation helpful? Give feedback.



Hey! Thanks for the report. There are two potential issues at play here; the first, a fix was merged this evening.
Check if the utils folder exists, if not generate it using the ng g @spartan-ng/cli:ui command
Update your root tsconfig.app.json file to include libs (or wherever you chose to create the components) directory:
I hope that helps