taxonomy/tsconfig.json

44 lines
1,012 B
JSON
Raw Permalink Normal View History

2022-10-26 13:18:06 +00:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
2022-10-26 13:18:06 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/components/*": ["components/*"],
2022-11-06 10:40:19 +00:00
"@/ui/*": ["ui/*"],
"@/hooks/*": ["hooks/*"],
"@/lib/*": ["lib/*"],
"@/config/*": ["config/*"],
"@/styles/*": ["styles/*"],
"@/prisma/*": ["prisma/*"],
"contentlayer/generated": ["./.contentlayer/generated"]
2022-10-26 13:18:06 +00:00
},
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".contentlayer/generated",
"content/pages/about.mdx"
],
"exclude": ["node_modules"]
2022-10-26 13:18:06 +00:00
}