2023-07-01 20:43:53 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
2023-07-13 09:39:37 +00:00
|
|
|
},
|
|
|
|
"typeRoots": ["./src/types", "./node_modules/@types"],
|
|
|
|
"types": ["node"]
|
2023-07-01 20:43:53 +00:00
|
|
|
},
|
2023-07-13 09:12:07 +00:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
2023-07-13 09:39:37 +00:00
|
|
|
"src/types/**/*.d.ts",
|
2023-07-13 09:12:07 +00:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
".next/types/**/*.ts"
|
|
|
|
],
|
2023-07-01 20:43:53 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|