mirror of
https://github.com/meienberger/runtipi.git
synced 2024-11-09 16:38:04 +03:00
83 lines
1.5 KiB
JSON
83 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": [
|
|
"./src/client/components/*"
|
|
],
|
|
"@/hooks/*": [
|
|
"./src/app/hooks/*"
|
|
],
|
|
"@/utils/*": [
|
|
"./src/client/utils/*"
|
|
],
|
|
"@/client/*": [
|
|
"./src/client/*"
|
|
],
|
|
"@/server/*": [
|
|
"./src/server/*"
|
|
],
|
|
"@/shared/*": [
|
|
"./src/shared/*"
|
|
],
|
|
"@/lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@/actions/*": [
|
|
"./src/app/actions/*"
|
|
],
|
|
"@/tests/*": [
|
|
"./tests/*"
|
|
],
|
|
"@/api/*": [
|
|
"./src/app/api/*"
|
|
],
|
|
},
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": false,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"types": [
|
|
"jest",
|
|
"@testing-library/jest-dom"
|
|
],
|
|
"experimentalDecorators": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mjs",
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"packages",
|
|
"repos"
|
|
]
|
|
}
|