2023-03-03 20:07:19 +00:00
|
|
|
const CracoAlias = require("craco-alias");
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|