af0cd26ea0
* feat: prettier run * fix: whatever that was * chore: format more files * chore: make format command better
36 lines
845 B
JSON
36 lines
845 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",
|
|
"**/**/*.ts",
|
|
"**/**/*.tsx",
|
|
"prisma/seed.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist", ".yarn", ".next"]
|
|
}
|