2022-02-12 23:07:11 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-18 16:17:05 +01:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2022-02-12 23:07:11 +01:00
|
|
|
"allowJs": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"checkJs": true,
|
|
|
|
"baseUrl": ".",
|
2022-02-12 23:07:11 +01:00
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"isolatedModules": true,
|
2022-02-12 23:07:11 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-03-18 16:17:05 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-03-24 01:44:11 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"paths": {
|
2022-03-31 03:44:18 +02:00
|
|
|
"@/styles/*": ["styles/pages/*"],
|
2022-03-24 01:44:11 +01:00
|
|
|
"@/components/*": ["components/*"],
|
|
|
|
"@/utils/*": ["utils/*"]
|
|
|
|
}
|
2022-02-12 23:07:11 +01:00
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2022-03-18 16:17:05 +01:00
|
|
|
"exclude": ["dist", ".next", "out", "next.config.js"]
|
2022-02-12 23:07:11 +01:00
|
|
|
}
|