spacedrive/apps/landing/tsconfig.json
Utku cda07b5f63
[ENG-1412] Fix blog/docs image sizes (#1758)
* fix

* Add image placeholder to NextImage component
2023-11-09 07:33:47 +00:00

41 lines
818 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"preserveWatchOutput": true,
"allowSyntheticDefaultImports": true,
"composite": true,
"paths": {
"~/*": ["./src/*"],
"@contentlayer/generated": ["./.contentlayer/generated"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"src/plugins",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"src/drizzle.config.ts",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}