“Сборник рассказов абсолютные пути” Ответ

Сборник рассказов абсолютные пути

const path = require('path');
module.exports = {
  ...other settings....,

  webpackFinal: async (config) => {
    config.resolve.modules = [
      ...(config.resolve.modules || []),
      path.resolve(__dirname, "../src"),
    ];

    return config;
  },

}

// Then add this in your tsconfig.json/jsconfig.json
{
......
    "compilerOptions": {
        .....
        "baseUrl": "./src"
    }
}
Grieving Gorilla

Сборник рассказов абсолютные пути

const path = require('path');

module.exports = {
  ...other settings....,

  webpackFinal: async (config) => {
    config.resolve.modules = [
      ...(config.resolve.modules || []),
      path.resolve(__dirname, "../src"),
    ];

    return config;
  },

}
Grieving Gorilla

Ответы похожие на “Сборник рассказов абсолютные пути”

Вопросы похожие на “Сборник рассказов абсолютные пути”

Смотреть популярные ответы по языку

Смотреть другие языки программирования