mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"strict": true,
|
|
"alwaysStrict": true,
|
|
"strictNullChecks": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"target": "es2017",
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"types": ["vitest/globals"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/public/*": ["./public/*"]
|
|
},
|
|
"plugins": [{ "name": "next" }]
|
|
},
|
|
"exclude": [
|
|
"./out/**/*",
|
|
"./node_modules/**/*",
|
|
".next/**/*",
|
|
"**/*.spec.ts",
|
|
"**/*.e2e.ts"
|
|
],
|
|
"include": [
|
|
"**/*.mts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".storybook/*.ts",
|
|
"next-env.d.ts",
|
|
".next/types/**/*.ts"
|
|
]
|
|
}
|