2022-09-11 14:07:24 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2015",
|
|
|
|
"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-01-28 16:39:27 +00:00
|
|
|
"incremental": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"src": ["src/*"]
|
|
|
|
}
|
2022-09-11 14:07:24 +00:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
|
|
"exclude": ["node_modules", "dev"]
|
|
|
|
}
|