2022-11-16 00:14:59 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
2024-02-04 23:09:00 +01:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false, // TODO: Change to strict: true
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-11-16 00:14:59 +01:00
|
|
|
"noEmit": true,
|
2024-02-04 23:09:00 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
2022-11-16 00:14:59 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2024-02-04 23:09:00 +01:00
|
|
|
"jsx": "preserve",
|
2024-02-01 19:59:51 +01:00
|
|
|
"incremental": true,
|
2024-02-04 23:09:00 +01:00
|
|
|
"plugins": [{ "name": "next" }],
|
2024-02-05 10:29:00 +01:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"],
|
|
|
|
"@content/*": ["./_content/*"],
|
|
|
|
"@generated/*": ["./generated/*"]
|
|
|
|
}
|
2022-11-16 00:14:59 +01:00
|
|
|
},
|
2024-02-04 23:09:00 +01:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2022-11-16 00:14:59 +01:00
|
|
|
}
|