Alexander Kim
- Total activity 57
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 18
-
-
Created CSS/SCSS selector specificty
Is there a way to check css selector specificity? In VSCode i could just hover over selector, and it would show specificity, like (0 1 0). Is it possible in WS? -
Created How to run/debug scratch file (Javascript/Typescript)
I want to use scratch file as a test polygon. Is it possible to ru a .js/.ts file: const result = 1 + 1console.log(result) Would be fired. -
Edited Module is not listed in package.json dependencies - Vue (TypeScript)
tsconfig.json: { "compilerOptions": { "target": "esnext", "module": "esnext", "strict": true, "jsx": "preserve", "importHelpers": true, "moduleResolution": "node", "experiment... -
Created How to build image with Docker plugin?
AnsweredVisiting Dockerfile and firing build from there launches unknown command, which results in <Unknown> docker image. Is there a command equivalent for docker build -t imagename . -
Edited Nuxt (typescript) - cannot resolve file logo.svg
Component: <template> <img src="@/assets/svg/logo.svg /></template> Gives an error Cannot resolve file and directory "@". I have used fake webpack.config.json and pointed WebStorm to it: const pat... -
Edited Datagrip in WebStorm
What kind of license do i need in order to install Datagrip plugin in Webstorm? Do you plan to make it a one-time buy for webstorm users? -
Created NuxtJS webpack aliases
There's no dedicated webpack.config.js when using Nuxt I need to point in Preferences | Language & Frameworks | Javascript | Webpack a path to webpack config file, in order to make WebStorm work wi... -
Edited Jetbrains account settings sync not syncing plugin settings
I installed Material UI plugin, made some modifications, then reused on another machine, it synced my plugins/themes, but i had to manually tweak my Material UI plugin. I think it's bugged, or it's... -
Edited Cannot resolve scss imports with Vue-CLI 3
Importing scss files inside .vue files doesn't work in IDE: @import "@/styles/mixins.scss" Shows an error: cannot resolve file "mixins" I even tried: @import "~@/styles/mixins.scss" from this issue...