Files
Eduard Gert 750f660bcc Update NextJS to 16.1.6 (#547)
* Update NextJS to 16.1.6

* Update Node in workflow

* Fix rabbit comments

* Fix types

* Add engines field
2026-02-02 15:34:23 +01:00

63 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "esnext",
"lib": [
"es6",
"es7",
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
],
"@/config/production": [
"./config.json"
],
"@/config/local": [
"./.local-config.json"
],
"@/config/test": [
"./.test-config.json"
],
"@components/*": [
"./src/components/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@utils/*": [
"./src/utils/*"
]
}
},
"include": [
"next-env.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"node_modules/@axa-fr/**/*"
]
}