jsconfig

jsconfig


Minimal Sample #

this configuration worked with UI project

  1. jump to module definitions was working
  2. jump to ‘src’ local references was working
{
  "compilerOptions": {
    "paths": {
      "baseUrl": "./",
      "@/*":["./src/*"],
      "@components/*": ["./src/components/*"],
      "@root/*": ["./src/*"]
    }
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules"]
}


No notes link to this note

Previous Next