scoresaber-reloadedv3/tsconfig.json
Liam f705218bfd
All checks were successful
Deploy SSR / deploy (push) Successful in 1m43s
add hover transition to the footer
2024-09-14 18:40:39 +01:00

33 lines
625 B
JSON

{
"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": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"tailwind.config.ts",
],
"exclude": ["node_modules"]
}