31 lines
826 B
JSON
31 lines
826 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"],
|
|
"plugins": [{ "name": "typescript-plugin-css-modules" }],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/styles/": ["styles/pages/*"],
|
|
"@/components/*": ["components/*"],
|
|
"@/utils/*": ["utils/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["dist", ".next", "out", "next.config.js"]
|
|
}
|