2021-06-23 13:20:20 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
2022-10-19 21:43:01 -05:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-06-23 13:20:20 -05:00
|
|
|
"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": {
|
2022-10-19 21:43:01 -05:00
|
|
|
"components/*": ["components/*"],
|
|
|
|
"hooks/*": ["lib/hooks/*"],
|
|
|
|
"middleware/*": ["lib/middleware/*"],
|
2023-01-06 17:45:48 -05:00
|
|
|
"lib/*": ["lib/*"],
|
|
|
|
"config/*": ["lib/config/*"],
|
|
|
|
"utils/*": ["lib/utils/*"]
|
2022-06-17 17:35:29 -05:00
|
|
|
},
|
|
|
|
"incremental": true
|
2021-06-23 13:20:20 -05:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"next-env.d.ts",
|
2021-08-13 14:57:05 -05:00
|
|
|
"zip-env.d.ts",
|
2021-06-23 13:20:20 -05:00
|
|
|
"**/*.ts",
|
|
|
|
"**/*.tsx",
|
2022-07-10 00:38:53 -05:00
|
|
|
"**/**/*.ts",
|
|
|
|
"**/**/*.tsx",
|
2021-06-23 13:20:20 -05:00
|
|
|
"prisma/seed.ts"
|
|
|
|
],
|
2022-10-19 21:43:01 -05:00
|
|
|
"exclude": ["node_modules", "dist", ".yarn", ".next"]
|
|
|
|
}
|