mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* chore: update templates * ci(templates): validate generated starters * fix * fix(templates): support pnpm 9 workspace config * ci(templates): test supported pnpm version
18 lines
367 B
JSON
18 lines
367 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/ui/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["."],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|