2022-10-17 20:31:40 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-11-03 12:13:09 +03:00
|
|
|
"target": "ES2020",
|
2022-10-17 20:31:40 +03:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": false,
|
|
|
|
"esModuleInterop": true,
|
2022-11-03 12:13:09 +03:00
|
|
|
"module": "CommonJS",
|
2022-10-17 20:31:40 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2022-11-03 11:01:55 +03:00
|
|
|
"jsx": "react-jsx",
|
2022-10-17 20:31:40 +03:00
|
|
|
"incremental": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"declaration": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "./dist"
|
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "pages/**/*.tsx"],
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|