2021-05-30 12:03:18 -07:00
|
|
|
{
|
2022-12-12 18:52:39 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "esnext",
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"strict": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
2022-12-26 13:03:10 -05:00
|
|
|
"incremental": true,
|
|
|
|
"paths": {
|
|
|
|
"~/*": ["./*"]
|
|
|
|
}
|
2022-12-12 18:52:39 -05:00
|
|
|
},
|
2022-12-26 13:03:10 -05:00
|
|
|
|
2022-12-12 18:52:39 -05:00
|
|
|
"exclude": ["node_modules", ".next"],
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "next.config.js"]
|
2021-05-30 12:03:18 -07:00
|
|
|
}
|