Answers for "jsconfig"

1

jsconfig

// Create jsconfig.json in root

{
    "compilerOptions": {
        "baseUrl": "./",
        "paths": {
            "@components/*": ["components/*"],
            "@root/*": ["./*"]
        }
    }
}
Posted by: Guest on August-09-2021
0

jsconfig

const path = require('path');


module.exports = {
    resolve: {
        alias: {
            '@': path.resolve('resources/js'),
            '@Components': path.resolve('resources/js'/Components),
        },
    },
};
Posted by: Guest on April-29-2021
0

vs code jsconfig

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "ClientApp/*": ["./ClientApp/*"]
    }
  }
}
Posted by: Guest on June-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language