2023-10-13 08:39:50 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-10-13 09:23:11 -04:00
|
|
|
"target": "es2017",
|
2023-10-13 08:39:50 -04:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
2023-10-13 09:23:11 -04:00
|
|
|
// "moduleResolution": "bundler",
|
|
|
|
"moduleResolution": "Node",
|
2023-10-13 08:39:50 -04:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
2023-10-15 22:55:33 -04:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2023-10-13 08:39:50 -04:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
}
|
|
|
|
},
|
2023-10-13 09:23:11 -04:00
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
|
|
|
".next/types/**/*.ts",
|
|
|
|
"prettier.config.js"
|
|
|
|
],
|
2023-10-13 08:39:50 -04:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|