2022-11-16 00:14:59 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "esnext",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"strict": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2024-02-01 19:59:51 +01:00
|
|
|
"incremental": true,
|
|
|
|
"plugins": [{ "name": "next" }]
|
2022-11-16 00:14:59 +01:00
|
|
|
},
|
|
|
|
"exclude": ["node_modules"],
|
2024-02-01 19:59:51 +01:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
|
2022-11-16 00:14:59 +01:00
|
|
|
}
|