scoresaber-reloaded-v2/tsconfig.json

35 lines
672 B
JSON
Raw Permalink Normal View History

2023-10-18 06:58:40 +00:00
{
"compilerOptions": {
2023-11-08 23:17:32 +00:00
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
2023-10-18 06:58:40 +00:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
2023-11-08 11:49:19 +00:00
"removeComments": true,
2023-10-18 06:58:40 +00:00
"plugins": [
{
"name": "next"
}
],
"paths": {
2023-11-08 23:17:32 +00:00
"@/*": ["./src/*"]
2023-10-18 06:58:40 +00:00
}
},
2023-11-13 05:42:06 +00:00
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
2023-11-13 07:39:54 +00:00
"src/secrets.ts"
2023-11-13 05:42:06 +00:00
],
2023-11-08 23:17:32 +00:00
"exclude": ["node_modules"]
2023-10-18 06:58:40 +00:00
}