2023-03-07 15:23:54 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-26 06:53:40 +00:00
|
|
|
"target": "ES2015",
|
2023-03-07 15:23:54 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"incremental": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "next"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./*"]
|
|
|
|
}
|
|
|
|
},
|
2023-04-07 04:17:37 +00:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "app/calcTextareaHeight.ts"],
|
2023-03-07 15:23:54 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|