mirror of
https://github.com/mue/mue.git
synced 2026-06-05 23:45:53 +02:00
27 lines
685 B
JSON
27 lines
685 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"baseUrl": "src",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": false,
|
|
"checkJs": false,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"i18n/*": ["./i18n/*"],
|
|
"components/*": ["./components/*"],
|
|
"assets/*": ["./assets/*"],
|
|
"config/*": ["./config/*"],
|
|
"features/*": ["./features/*"],
|
|
"lib/*": ["./lib/*"],
|
|
"scss/*": ["./scss/*"],
|
|
"translations/*": ["./i18n/locales/*"],
|
|
"utils/*": ["./utils/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "build"]
|
|
}
|