19 lines
415 B
JSON
19 lines
415 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"paths": {
|
||
|
|
"@workspace/blocks/*": ["./src/*"],
|
||
|
|
"@workspace/ui/*": ["../ui/src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|