This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
scoresaber-reloadedv3/apps/frontend/tsconfig.json

46 lines
798 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",
2024-10-04 10:31:14 +00:00
"moduleResolution": "node",
2024-09-05 16:09:17 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
2024-10-03 19:26:24 +00:00
"moduleDetection": "force",
2024-09-05 16:09:17 +00:00
"jsx": "preserve",
"incremental": true,
2024-10-03 19:26:24 +00:00
"declaration": true,
"declarationMap": true,
2024-09-05 16:09:17 +00:00
"plugins": [
{
"name": "next"
}
],
2024-10-03 19:16:51 +00:00
"baseUrl": ".",
2024-09-05 16:09:17 +00:00
"paths": {
"@/*": [
"./src/*"
]
},
2024-10-03 19:32:38 +00:00
"target": "ES2022"
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
}