Files
cosscom__coss/tsconfig.json
Volnei Munhoz f5df3a2ae9 refactor: configs improvements (#482)
* configs improvements

* add cache to lint to faster lint checks

* Remove check-types from turbo.json

* fix: registry buind and ui propagation issues

* chore: update TypeScript paths and ESLint ignores, and clean up mobile-nav component

* fix: update imports

---------

Co-authored-by: pasqualevitiello <pasqualevitiello@gmail.com>
2025-11-04 09:54:33 +00:00

23 lines
546 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "coss",
"compilerOptions": {
"moduleResolution": "bundler",
"module": "ESNext",
"target": "ESNext",
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@coss/ui/*": ["packages/ui/src/*"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"exclude": ["node_modules", "dist"],
"references": [{ "path": "packages/ui" }]
}