front-hub/craco.config.js

17 lines
384 B
JavaScript
Raw Normal View History

2023-11-05 23:33:40 +00:00
const CracoAlias = require("craco-alias")
2023-03-17 14:02:44 +00:00
module.exports = {
2023-11-05 23:33:40 +00:00
plugins: [
{
plugin: CracoAlias,
options: {
source: "tsconfig",
// baseUrl SHOULD be specified
// plugin does not take it from tsconfig
baseUrl: "./src",
// tsConfigPath should point to the file where "baseUrl" and "paths" are specified
tsConfigPath: "./tsconfig.extend.json"
}
}
]
}