mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00

* Fix failing webview UI tests for Announcement component * Remove unnecessary comments * Fix Format --------- Co-authored-by: Dennis Bartlett <bartlett.dc.1@gmail.com>
36 lines
849 B
JSON
36 lines
849 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"types": ["vitest/globals", "@testing-library/jest-dom"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* Aliasing */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@context/*": ["src/context/*"],
|
|
"@shared/*": ["../src/shared/*"],
|
|
"@utils/*": ["src/utils/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|