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