2021-11-03 22:46:45 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-24 04:34:26 +00:00
|
|
|
"target": "ESNext",
|
2021-11-03 22:46:45 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-02-27 07:17:58 +00:00
|
|
|
"importHelpers": true,
|
2021-11-03 22:46:45 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
2021-11-06 16:47:20 +00:00
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": "src"
|
2021-11-03 22:46:45 +00:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|