30 lines
765 B
JSON
30 lines
765 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"incremental": true,
|
|
"skipLibCheck": true,
|
|
"removeComments": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/styles/*": ["styles/pages/*"],
|
|
"@/components/*": ["components/*"],
|
|
"@/utils/*": ["utils/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["dist", ".next", "out", "next.config.js"]
|
|
}
|