runtipi/tsconfig.json

46 lines
1.4 KiB
JSON
Raw Normal View History

2022-05-24 19:45:16 +03:00
{
"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"],
2022-05-24 19:45:16 +03:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "CommonJS",
2022-05-24 19:45:16 +03:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2022-05-24 19:45:16 +03:00
"jsx": "preserve",
2023-08-15 23:48:15 +03:00
"incremental": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"noUncheckedIndexedAccess": true,
"types": ["@testing-library/jest-dom", "node", "reflect-metadata"],
2023-09-01 23:22:27 +03:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2023-09-01 23:22:27 +03:00
"plugins": [
{
"name": "next"
}
],
"noEmit": true
2022-05-24 19:45:16 +03:00
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.mjs", "**/*.js", "**/*.jsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "packages", "repos"]
2022-05-24 19:45:16 +03:00
}