score:0

stopping and restarting the server should fix most of your module import issues.

scss should be ready to go but if it continues after the restart, declaring it in a typescript declaration file should resolve it.

// index.d.ts
declare module '*.scss';

score:0

adding to tsconfig.json

"compileroptions": {
    ...
    "baseurl": ".",
    ...
}

resolved this


Related Query

More Query from same tag