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
|
|
|
},
|
2023-03-03 23:40:28 -05:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2022-10-19 21:43:01 -05:00
|
|
|
"exclude": ["node_modules", "dist", ".yarn", ".next"]
|
|
|
|
}
|