website/tsconfig.json

40 lines
642 B
JSON
Raw Permalink Normal View History

2024-04-20 14:56:46 +00:00
{
"compilerOptions": {
2024-04-21 12:51:22 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-04-20 14:56:46 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"paths": {
2024-04-21 12:51:22 +00:00
"@/*": [
"./*"
]
},
"plugins": [
{
"name": "next"
}
]
2024-04-20 14:56:46 +00:00
},
2024-04-21 12:51:22 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
2024-04-20 14:56:46 +00:00
}