19 lines
421 B
JSON
19 lines
421 B
JSON
{
|
|
"extends": "@repo/typescript-config/react-library.json",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@repo/rdx-ui/*": ["./src/*"]
|
|
},
|
|
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|