I'm trying to include hello.js in my angular 5.0.2 project.
Below is the cli version
I have added the script file to the angular-cli.json file.
"scripts": [
"./js/hello.js",
"./js/hello.polyfill.js",
]
The path is correct as i'm also loading style in the angular-cli.json which are loading fine.
In my service file i'm importing hello as below:
declare var hello: any;
declare var gapi: any;
but when i run ng build the console shows the error:
Cannot find module 'hello'.
If i load the files through script tag in the index.html the code and imports works fine .Only when i add it to the angular-cli.json file it stops working.
Please guide Thanks
Edit the scripts array in angular-cli.json or angular.json.
You must also specify the assets folder:
"scripts": [
"./assets/js/hello.js",
"./assets/js/hello.polyfill.js",
]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With