main-site/tsconfig.json

37 lines
654 B
JSON
Raw Permalink Normal View History

2022-12-03 20:02:13 +00:00
{
"compilerOptions": {
2022-12-15 20:24:12 +00:00
"target": "esnext",
2022-12-03 20:02:13 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
2022-12-14 18:34:39 +00:00
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
]
2022-12-03 20:02:13 +00:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
2022-12-14 18:34:39 +00:00
"**/*.tsx",
".next/types/**/*.ts"
2022-12-03 20:02:13 +00:00
],
"exclude": [
"node_modules"
]
}