2022-09-02 11:17:39 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-01-12 08:07:55 +00:00
|
|
|
"target": "ES2020",
|
2023-05-08 10:18:33 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-09-02 11:17:39 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2022-12-13 13:21:30 +00:00
|
|
|
"noEmit": true,
|
2022-09-02 11:17:39 +00:00
|
|
|
"jsx": "preserve",
|
2022-09-02 11:51:00 +00:00
|
|
|
"incremental": true,
|
2023-02-24 08:47:27 +00:00
|
|
|
"baseUrl": "src",
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
]
|
2022-09-02 11:17:39 +00:00
|
|
|
},
|
2023-05-08 10:18:33 +00:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/**.d.ts", ".next/types/**/*.ts"],
|
|
|
|
"exclude": ["node_modules"]
|
2022-09-02 11:17:39 +00:00
|
|
|
}
|