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

33 lines
861 B
JSON
Raw Normal View History

2024-09-05 16:09:17 +00:00
{
"compilerOptions": {
2024-10-04 10:52:17 +00:00
"plugins": [{ "name": "next" }],
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
2024-09-05 16:09:17 +00:00
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Bundler",
2024-09-05 16:09:17 +00:00
"resolveJsonModule": true,
2024-10-04 10:52:17 +00:00
"isolatedModules": true,
"jsx": "preserve",
2024-10-04 10:55:44 +00:00
"composite": false,
"declaration": true,
"declarationMap": true,
"inlineSources": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"baseUrl": ".",
2024-09-05 16:09:17 +00:00
"paths": {
"@/*": ["./src/*"]
}
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
}