48 lines
878 B
JSON
48 lines
878 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"components/*": [
|
|
"components/*"
|
|
],
|
|
"hooks/*": [
|
|
"lib/hooks/*"
|
|
],
|
|
"middleware/*": [
|
|
"lib/middleware/*"
|
|
],
|
|
"lib/*": [
|
|
"lib/*"
|
|
]
|
|
},
|
|
"incremental": true
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"zip-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"prisma/seed.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|