2020-05-07 08:03:30 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-12-01 10:09:40 +01:00
|
|
|
"baseUrl": ".", // This must be specified if "paths" is.
|
2023-04-03 11:55:42 +02:00
|
|
|
"target": "es2015",
|
2022-12-01 10:09:40 +01:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
2021-10-27 12:27:14 +02:00
|
|
|
"moduleResolution": "node",
|
2022-12-01 10:09:40 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-10-27 12:27:14 +02:00
|
|
|
"jsx": "preserve",
|
2021-10-13 18:48:59 +02:00
|
|
|
"paths": {
|
2022-12-01 10:09:40 +01:00
|
|
|
"@components/*": ["./src/components/*"],
|
2021-10-13 18:48:59 +02:00
|
|
|
"@shared/*": ["./src/components/@shared/*"],
|
2021-10-18 20:44:33 +02:00
|
|
|
"@hooks/*": ["./src/@hooks/*"],
|
|
|
|
"@context/*": ["./src/@context/*"],
|
|
|
|
"@images/*": ["./src/@images/*"],
|
2021-10-27 12:27:14 +02:00
|
|
|
"@utils/*": ["./src/@utils/*"],
|
|
|
|
"@content/*": ["./@content/*"]
|
2022-12-01 10:09:40 +01:00
|
|
|
}
|
2020-05-07 08:03:30 +02:00
|
|
|
},
|
2022-12-01 10:09:40 +01:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
|
|
"exclude": ["node_modules", ".next", "*.js"]
|
2020-05-07 08:03:30 +02:00
|
|
|
}
|