Build, Test, and Push CFDM Docker Image / test (push) Successful in 3m55s
Build, Test, and Push CFDM Docker Image / build-and-push (push) Successful in 2m49s
Build, Test, and Push CFDM Docker Image / update-wiki (push) Successful in 7s
Build, Test, and Push CFDM Docker Image / create-release (push) Has been skipped
- Added new path aliases for '@cfdm/ui/components', '@cfdm/ui/hooks', and '@cfdm/ui/lib' in tsconfig.app.json and vite.config.ts to streamline imports. - Set baseUrl in tsconfig.app.json for improved module resolution. - Included ignoreDeprecations setting in tsconfig.app.json to manage TypeScript deprecations. Co-authored-by: Cursor <cursoragent@cursor.com>
31 lines
996 B
JSON
31 lines
996 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": false,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@cfdm/ui/components/*": ["../../packages/ui/src/components/*"],
|
|
"@cfdm/ui/hooks/*": ["../../packages/ui/src/hooks/*"],
|
|
"@cfdm/ui/lib/*": ["../../packages/ui/src/lib/*"],
|
|
"@cfdm/ui/globals.css": ["../../packages/ui/src/styles/globals.css"],
|
|
"@cfdm/shared": ["../../packages/shared/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/components/blocks/**"]
|
|
}
|