tasko/tsconfig.json

36 lines
753 B
JSON
Raw Normal View History

2024-02-15 02:30:10 +00:00
{
"compilerOptions": {
"target": "es5",
"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-11-17 21:28:51 +00:00
"@/*": ["./*"],
"content-collections": ["./.content-collections/generated"]
2024-04-06 21:06:07 +00:00
},
"forceConsistentCasingInFileNames": true
2024-02-15 02:30:10 +00:00
},
2025-01-19 06:09:20 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"cache-handler.mts"
],
2024-02-15 02:30:10 +00:00
"exclude": ["node_modules"]
}