quivr/frontend/tsconfig.eslint.json
Stan Girard 3d9cbe5cea
feat: update sentry (#3326)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-10-05 01:55:40 -07:00

46 lines
1.1 KiB
JSON

{
"compilerOptions": {
"typeRoots": ["node_modules/@types"],
"composite": true,
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"incremental": true,
"noEmitOnError": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"strictNullChecks": true,
"target": "esnext",
"types": ["node", "vitest/globals"],
"lib": ["dom", "dom.iterable", "es2020"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"sourceMap": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"ts-node": {
"compilerOptions": {
"module": "NodeNext"
},
"require": ["tsconfig-paths/register"]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}