2020-05-14 09:41:38 -04:00
|
|
|
{
|
2021-12-25 10:44:24 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"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",
|
2022-07-30 17:32:19 -04:00
|
|
|
"incremental": true,
|
|
|
|
"types": ["node", "@testing-library/jest-dom", "@types/jest"]
|
2021-12-25 10:44:24 -05:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2022-06-08 07:19:51 -04:00
|
|
|
"exclude": ["node_modules", "cypress", "cypress.config.ts"]
|
2020-05-14 09:41:38 -04:00
|
|
|
}
|