2024-07-01 10:28:41 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
2024-09-20 13:41:03 -04:00
|
|
|
"@/*": ["./*"],
|
|
|
|
"content-collections": ["./.content-collections/generated"]
|
2024-07-01 10:28:41 -04:00
|
|
|
}
|
|
|
|
},
|
2024-09-20 15:28:12 -04:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
".next/types/**/*.ts",
|
2024-09-23 09:58:08 -07:00
|
|
|
"scripts/generate-rss-feed.mjs",
|
|
|
|
"__tests__/**/*.jsx",
|
|
|
|
"__tests__/**/*.tsx"
|
2024-09-20 15:28:12 -04:00
|
|
|
],
|
2024-07-01 10:28:41 -04:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|