mirror of
https://github.com/cosscom/coss.git
synced 2026-09-14 20:06:50 +08:00
23 lines
546 B
JSON
23 lines
546 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@coss/ui/*": ["packages/ui/src/*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ESNext"
|
|
},
|
|
"display": "coss",
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [{ "path": "packages/ui" }]
|
|
}
|