2021-04-18 01:56:23 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
2021-08-13 15:48:29 +02:00
|
|
|
"types": ["jest", "@testing-library/jest-dom", "@testing-library/react"],
|
2021-04-18 01:56:23 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"resolveJsonModule": true,
|
2021-12-04 15:52:51 +01:00
|
|
|
"isolatedModules": true,
|
|
|
|
"incremental": true
|
2021-04-18 01:56:23 +02:00
|
|
|
},
|
2022-07-23 23:00:58 +02:00
|
|
|
"exclude": [
|
|
|
|
"dist",
|
|
|
|
".next",
|
|
|
|
"out",
|
|
|
|
"next.config.js",
|
|
|
|
"cypress.config.ts",
|
|
|
|
"cypress"
|
|
|
|
],
|
2021-04-18 01:56:23 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
|
|
|
}
|