www/tsconfig.json

36 lines
750 B
JSON
Raw Permalink Normal View History

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": {
"@/*": ["./*"],
"content-collections": ["./.content-collections/generated"]
2024-07-01 10:28:41 -04:00
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"scripts/generate-rss-feed.mjs",
"__tests__/**/*.jsx",
"__tests__/**/*.tsx"
],
2024-07-01 10:28:41 -04:00
"exclude": ["node_modules"]
}