mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-11 00:23:17 +03:00
43 lines
1.1 KiB
JSON
43 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"
|
||
|
}
|
||
|
],
|
||
|
},
|
||
|
"ts-node": {
|
||
|
"compilerOptions": {
|
||
|
"module": "NodeNext"
|
||
|
},
|
||
|
"require": ["tsconfig-paths/register"]
|
||
|
},
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|