2021-04-25 19:13:07 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-07-11 16:07:55 -04:00
|
|
|
"baseUrl": ".",
|
2021-09-27 16:20:18 -04:00
|
|
|
"target": "ES2020",
|
2021-08-23 11:11:42 -04:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-04-25 19:13:07 -04:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
2021-09-27 16:20:18 -04:00
|
|
|
"module": "CommonJS",
|
2021-04-25 19:13:07 -04:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"strictFunctionTypes": true,
|
2021-08-13 04:16:37 -04:00
|
|
|
"paths": {
|
2021-08-17 15:22:19 -04:00
|
|
|
"@/components/*": ["components/*"],
|
2021-08-23 11:11:42 -04:00
|
|
|
"@/lib/*": ["lib/*"],
|
2021-08-28 15:52:45 -04:00
|
|
|
"@/hooks/*": ["hooks/*"],
|
|
|
|
"@/utils": ["utils"]
|
2021-08-13 04:16:37 -04:00
|
|
|
}
|
2021-04-25 19:13:07 -04:00
|
|
|
},
|
2021-08-23 11:11:42 -04:00
|
|
|
"include": ["next-env.d.ts", "types.d.ts", "**/*.ts", "**/*.tsx"],
|
|
|
|
"exclude": ["node_modules"]
|
2021-04-25 19:13:07 -04:00
|
|
|
}
|