Skip to content
Snippets Groups Projects
paths.js 532 B
Newer Older
Fabien Amarger's avatar
Fabien Amarger committed
const path = require("path");

//------------------------------------------------------------------------------

const rootDir = path.resolve(__dirname, "../");

module.exports = {
  modules: path.resolve(path.join(rootDir, "node_modules")),
  public: path.resolve(path.join(rootDir, "src/assets/public")),
  src: path.resolve(path.join(rootDir, "src")),
  build: path.resolve(path.join(rootDir, "build")),
  index: path.resolve(path.join(rootDir, "src/index.tsx")),
  index_html: path.resolve(path.join(rootDir, "index.html")),
};