adminFront/craco.config.js
skeris 947431127a
Some checks failed
Deploy / CreateImage (push) Failing after 15m7s
Deploy / DeployService (push) Has been skipped
move uikit to gitea
2025-01-28 03:02:42 +03:00

22 lines
429 B
JavaScript

const CracoAlias = require("craco-alias");
module.exports = {
eslint: {
enable: false
},
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",
},
},
],
};