{ "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", "tests" ], "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" } } }