38 lines
565 B
JSON
38 lines
565 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
],
|
|
"@/components/*": [
|
|
"./components/*"
|
|
],
|
|
"@/utils/*": [
|
|
"./utils/*"
|
|
],
|
|
"@/redux/*": [
|
|
"./redux/*"
|
|
],
|
|
"@/app/*": [
|
|
"./app/*"
|
|
],
|
|
"@/lib/*": [
|
|
"./lib/*"
|
|
],
|
|
"@/public/*": [
|
|
"./public/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.js",
|
|
"./**/*.jsx",
|
|
"./**/*.ts",
|
|
"./**/*.tsx",
|
|
"components/Layout"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |