2021-03-22 13:48:48 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-08-19 12:27:01 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-06-24 22:15:18 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@lib/*": ["lib/*"]
|
|
|
|
},
|
2021-03-22 13:48:48 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
2021-08-16 16:15:03 +00:00
|
|
|
"strict": true,
|
2021-03-22 13:48:48 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve"
|
|
|
|
},
|
2021-08-19 12:27:01 +00:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "lib/*.js"],
|
|
|
|
"exclude": ["node_modules"]
|
2021-03-22 13:48:48 +00:00
|
|
|
}
|