19 lines
394 B
JSON
19 lines
394 B
JSON
{
|
|
"extends": "@repo/typescript-config/react-library.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"react": ["./node_modules/@types/react"]
|
|
},
|
|
"declaration": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|