console/packages/web/docs/tsconfig.json
Piotr Monwid-Olechnowicz ba43c930fc
Case studies (#6349)
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com>
Co-authored-by: Saihajpreet Singh <saihajpreet.singh@gmail.com>
2025-01-27 19:44:04 +00:00

31 lines
826 B
JSON

{
"compilerOptions": {
"target": "es2015",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true,
// Next resolves with package.json imports,
// but without .paths, TS thinks we need .jsx extensions for these imports
"paths": {
"#components/*": ["./src/components/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}