2022-09-22 10:39:53 +03:00
|
|
|
{
|
2023-02-09 07:19:11 +03:00
|
|
|
"extends": "../../tsconfig.json",
|
2022-09-22 10:39:53 +03:00
|
|
|
"compilerOptions": {
|
2022-10-14 14:29:36 +03:00
|
|
|
"target": "ES2020",
|
2022-09-22 10:39:53 +03:00
|
|
|
"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",
|
2023-03-01 10:40:01 +03:00
|
|
|
"jsxImportSource": "@emotion/react",
|
2022-09-22 10:39:53 +03:00
|
|
|
"incremental": true,
|
2023-03-11 08:15:19 +03:00
|
|
|
"experimentalDecorators": true
|
2022-09-22 10:39:53 +03:00
|
|
|
},
|
2023-03-01 10:40:01 +03:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "src/types/types.d.ts"],
|
2022-09-22 10:39:53 +03:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|