2020-09-30 15:12:10 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2022-05-11 23:31:31 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2020-09-30 15:12:10 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-08 00:37:15 -08:00
|
|
|
"jsx": "preserve",
|
2023-05-20 21:15:25 -07:00
|
|
|
"incremental": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-09-30 15:12:10 -07:00
|
|
|
},
|
2023-05-20 21:15:25 -07:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "utils/constants.js"],
|
2022-05-11 23:31:31 -07:00
|
|
|
"exclude": ["node_modules"]
|
2020-09-30 15:12:10 -07:00
|
|
|
}
|