I have a project where in the public directory, there is a scss and a css directory.
When I modify my scss files, they are compiled as css inside the correct directory. The problem I am getting is I can't manage to generate the source file associated with it.
Here is my PhpStorm File Watcher config :
Here is the result I expect : (the coding.css file is the one I generated, the claim.css and claim.css.map are what I want.
From what I understood, Sass should generate a source map file by default, but I am not getting source map files.


sassis that (engine / language used)? How did you install it. Is that node-sass? The syntax seems similar. The official/current Node.js based Sass I'm using now creates the.mapfile just fine .. but params a bit different. E.g. I'm using--no-source-map --style=expanded $FileName$:$FileNameWithoutExtension$.csspublic/css/folder where they are created (in fact -- it looks broken to me). Maybe they are there but the IDE does not see it (the Virtual File System subsystem that it uses). Try hitting theRefreshbutton (File | Reload all from Disk) -- will the IDE see the new files?node-sass. I know it should create it, that's what I don't understand. I tried reloading from Disk everytime and I also checked using my standard file explorer but still no file. I changed the "Ouputs path to refresh" to mypublic/css/path and it is still not working.--source-map trueparam--source-map trueworked !! Thank you !