jsconfig
Minimal Sample #
this configuration worked with UI project
- jump to module definitions was working
- jump to ‘src’ local references was working
{
"compilerOptions": {
"paths": {
"baseUrl": "./",
"@/*":["./src/*"],
"@components/*": ["./src/components/*"],
"@root/*": ["./src/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}