25 lines
630 B
JSON
25 lines
630 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
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["dist", ".next", "out", "next.config.js"]
|
|
}
|