31 lines
824 B
JSON
31 lines
824 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.json", // Extend the config options from the root,
|
||
|
"compilerOptions": {
|
||
|
// The following options are not required as they've been moved to the root tsconfig
|
||
|
// "paths": {
|
||
|
// "@/*": ["./*"]
|
||
|
// }
|
||
|
// "incremental": true,
|
||
|
// "forceConsistentCasingInFileNames": true,
|
||
|
// "skipLibCheck": true,
|
||
|
"target": "es5",
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"allowJs": true,
|
||
|
"strict": true,
|
||
|
"noEmit": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"plugins": [
|
||
|
{
|
||
|
"name": "next"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|