svrjs-nextjs-website/tsconfig.json

46 lines
778 B
JSON
Raw Normal View History

2024-06-15 14:55:33 +02:00
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2024-06-15 14:55:33 +02:00
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./*"
]
},
"target": "ES2017"
2024-06-15 14:55:33 +02:00
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"lib/Hoc/withAuth.jsx",
"**/*.mdx",
"pages/_app.tsx",
"hashedpass.s",
"app/(root)/contact"
],
"exclude": [
"node_modules"
]
2024-06-15 14:55:33 +02:00
}