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