runtipi/tsconfig.json
Nicolas Meienberger e988991bca
refactor: isolate database client in its own package (#1581)
* refactor: isolate database client in its own package

* refactor: bot suggestions
2024-08-08 22:18:08 +02:00

88 lines
1.6 KiB
JSON

{
"compilerOptions": {
"target": "es2017",
"baseUrl": ".",
"paths": {
"@/components/*": [
"./src/client/components/*"
],
"@/hooks/*": [
"./src/app/hooks/*"
],
"@/utils/*": [
"./src/utils/*"
],
"@/client/*": [
"./src/client/*"
],
"@/server/*": [
"./src/server/*"
],
"@/shared/*": [
"./src/shared/*"
],
"@/lib/*": [
"./src/lib/*"
],
"@/actions/*": [
"./src/app/actions/*"
],
"@/tests/*": [
"./tests/*"
],
"@/api/*": [
"./src/app/api/*"
],
"@/config/*": [
"./src/config/*"
]
},
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "CommonJS",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"types": [
"@testing-library/jest-dom",
"node",
"reflect-metadata"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"plugins": [
{
"name": "next"
}
],
"noEmit": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.mjs",
"**/*.js",
"**/*.jsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"packages",
"repos"
]
}