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

29 lines
668 B
JSON
Raw Normal View History

2024-09-05 16:09:17 +00:00
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"isolatedModules": true,
2024-09-05 16:09:17 +00:00
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
2024-09-05 16:09:17 +00:00
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
2024-09-05 16:09:17 +00:00
"plugins": [
{
"name": "next"
}
],
"outDir": "dist",
"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
}