infoalloggi-monorepo/apps/infoalloggi/tsconfig.json

68 lines
1.3 KiB
JSON
Raw Normal View History

2025-08-04 17:45:44 +02:00
{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "esnext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"checkJs": true,
/* Bundled projects */
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"noEmit": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"incremental": true,
/* Path Aliases */
"baseUrl": ".",
"paths": {
"~/*": [
"./src/*"
]
}
},
"include": [
"src",
"next-env.d.ts",
"next.config.mjs",
"postcss.config.cjs",
"reset.d.ts",
"TypeHelpers.type.ts",
"public",
"emails",
".next/types/**/*.ts",
2025-08-28 18:27:07 +02:00
"tests"
2025-08-04 17:45:44 +02:00
],
"exclude": [
"node_modules",
"out",
"dist",
"check-env-vars.js",
"headers",
"kyselyRules",
".kanelrc.js",
],
"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"
}
}
}