2025-08-04 17:45:44 +02:00
|
|
|
{
|
2026-03-18 17:39:06 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
/* Path Aliases */
|
2026-04-03 18:57:39 +02:00
|
|
|
|
2026-03-18 17:39:06 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"checkJs": true,
|
|
|
|
|
/* Base Options: */
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
/* Bundled projects */
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"~/*": ["./src/*"]
|
|
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
/* Strictness */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "esnext"
|
|
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"out",
|
|
|
|
|
"dist",
|
|
|
|
|
"headers",
|
|
|
|
|
"kyselyRules",
|
2026-04-15 15:08:57 +02:00
|
|
|
"kanel.config.js"
|
2026-03-18 17:39:06 +01:00
|
|
|
],
|
|
|
|
|
"include": [
|
|
|
|
|
"src",
|
|
|
|
|
"global.d.ts",
|
|
|
|
|
"next-env.d.ts",
|
|
|
|
|
"next.config.ts",
|
|
|
|
|
"postcss.config.cjs",
|
|
|
|
|
"reset.d.ts",
|
|
|
|
|
"TypeHelpers.type.ts",
|
|
|
|
|
"public",
|
|
|
|
|
"emails",
|
|
|
|
|
".next/types/**/*.ts",
|
2026-03-27 16:53:47 +01:00
|
|
|
"tests",
|
2026-04-03 18:57:39 +02:00
|
|
|
"flow-gen.ts",
|
|
|
|
|
"check-unused-trpc.ts"
|
2026-03-18 17:39:06 +01:00
|
|
|
],
|
|
|
|
|
"ts-node": {
|
|
|
|
|
// these options are overrides used only by ts-node
|
|
|
|
|
// same as the --compilerOptions flag and the TS_NODE_COMPILER_OPTIONS environment variable
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs"
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-08-29 16:18:32 +02:00
|
|
|
}
|