2022-01-30 13:09:56 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-01-30 18:24:46 +03:00
|
|
|
"baseUrl": ".",
|
2023-05-11 21:43:16 +03:00
|
|
|
"target": "ES6",
|
2022-01-30 13:09:56 +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",
|
2022-02-03 19:56:48 +03:00
|
|
|
"incremental": true,
|
2023-07-16 15:44:10 +03:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"typeRoots": ["types"]
|
2022-01-30 13:09:56 +03:00
|
|
|
},
|
2023-06-19 20:07:57 +03:00
|
|
|
"include": ["src", "next-env.d.ts",],
|
2022-01-30 13:09:56 +03:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|