scoresaber-reloadedv3/projects/website/tsconfig.json

43 lines
716 B
JSON
Raw Normal View History

2024-09-05 16:09:17 +00:00
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-09-05 16:09:17 +00:00
"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"
}
],
2024-10-04 20:37:00 +00:00
"baseUrl": ".",
2024-09-05 16:09:17 +00:00
"paths": {
"@/*": [
"./src/*"
]
},
"target": "ES2017"
2024-09-05 16:09:17 +00:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"tailwind.config.ts"
],
"exclude": [
"node_modules"
]
2024-09-05 16:09:17 +00:00
}