Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
Cesarmartinezd
Total activity
10
Last activity
July 11, 2023 10:39
Member since
January 04, 2023 11:59
Following
0 users
Followed by
0 users
Votes
1
Subscriptions
3
Activity overview
Posts (0)
Comments (6)
Sort by recent activity
Recent activity
Votes
Created
January 04, 2023 14:37
Actually, doing this include in my tsconfig.json { ... "include": ["**/*.ts", "**/*.vue", ...], ...} brought a whole other host of issues... So I'll have to remove it and find a different way to...
Community
WebStorm
[WebStorm][Nuxt/Vue][Webpack] Webstorm does not see @ alias after IDE update
1 vote
Created
July 11, 2023 10:39
I have the same issue with the next config taken straight from Vite default ts config: { "files": [], "extends": "@vue/tsconfig/tsconfig.dom.json", "include": ["env.d.ts", "src/**/*", "src/**/*...
Community
WebStorm
Webstorm not resolving module imports using typescript paths
0 votes
Edited
January 04, 2023 14:58
Having the same issue. - Node version 16.14.2. - Nuxt 2.15.8. - WebStorm 2022.3.1 (issue only happens after migrating to this version) Here's my tsconfig { "compilerOptions": { "target": "E...
Community
WebStorm
Path alias is not recognised in .vue files
0 votes
Edited
January 04, 2023 13:12
Fixed it by adding "**/*.vue", to my tsconfig include list, as follows: tsconfig.json { ... "include": ["**/*.ts", "**/*.vue", "vue-shim.d.ts", ...], ...} Thanks
Community
WebStorm
[WebStorm][Nuxt/Vue][Webpack] Webstorm does not see @ alias after IDE update
0 votes
Created
January 04, 2023 13:06
The config was just: webpack.config.js const path = require('path');module.exports = { resolve: { // for WebStorm alias: { '@': path.resolve(__dirname), }, },}; I removed it after n...
Community
WebStorm
[WebStorm][Nuxt/Vue][Webpack] Webstorm does not see @ alias after IDE update
0 votes
Edited
January 04, 2023 13:01
Having the same problem after updating to Webstorm 2022.3.1 Normally I have no webpack.config.js since I'm in a Nuxt project and it creates those aliases for me automatically. I added one anyways t...
Community
WebStorm
[WebStorm][Nuxt/Vue][Webpack] Webstorm does not see @ alias after IDE update
0 votes