mirror of
https://github.com/graphql-hive/console
synced 2026-05-08 09:51:50 +00:00
Co-authored-by: Dimitri POSTOLOV <dmytropostolov@gmail.com> Co-authored-by: Saihajpreet Singh <saihajpreet.singh@gmail.com>
31 lines
826 B
JSON
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"]
|
|
}
|