15 lines
348 B
JSON
15 lines
348 B
JSON
{
|
|
"extends": "@multica/tsconfig/react-library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@/lib/utils": ["./lib/utils.ts"],
|
|
"@/hooks/*": ["./hooks/*"],
|
|
"@/components/ui/*": ["./components/ui/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|