24 lines
592 B
JSON
24 lines
592 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2015", // Or ES2016, ES2020, etc.
|
|
"downlevelIteration": true,
|
|
"lib": ["dom", "dom.iterable", "esnext", "ES2015", "DOM"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|