2023-07-28 06:30:40 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-28 11:27:46 +00:00
|
|
|
"target": "es6",
|
2023-07-28 06:30:40 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
}
|
|
|
|
},
|
2023-09-22 09:33:13 +00:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "app/[locale]/print.js"],
|
2023-07-28 06:30:40 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|