trackevery-day/tsconfig.json
Felix Schulze 2b46f927a1
Some checks failed
Lint / Lint (push) Failing after 9s
SonarQube Scan / SonarQube Trigger (push) Successful in 50s
nexjt 15 and ts fix
2024-11-02 11:23:10 +01:00

28 lines
598 B
JSON

{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"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"
}
],
"paths": {
"@/*": ["./*"]
},
"target": "ES2021"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}