- Added linting and type-checking scripts to package.json for api, web, and ui packages. - Updated ESLint configuration to ignore specific directories and added global window variable. - Modified TypeScript configuration for ui package to exclude turbo generators. - Refactored Button, Card, and Code components to use props for better readability and consistency.
8 lines
160 B
JSON
8 lines
160 B
JSON
{
|
|
"extends": "@repo/typescript-config/solid.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["turbo/generators"]
|
|
}
|