2022-12-02 10:55:56 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-08-25 07:11:33 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2022-12-02 10:55:56 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
2024-08-14 13:03:50 +02:00
|
|
|
"target": "esnext",
|
2022-12-02 10:55:56 +00:00
|
|
|
"strict": false,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
2024-05-14 09:40:58 +02:00
|
|
|
"moduleResolution": "bundler",
|
2022-12-02 10:55:56 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
2023-05-25 06:30:36 +00:00
|
|
|
"paths": {
|
2023-08-25 07:11:33 +00:00
|
|
|
"@/*": ["./*", "../../node_modules/*"]
|
2023-05-25 06:30:36 +00:00
|
|
|
},
|
2023-06-26 10:07:12 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-12-02 10:55:56 +00:00
|
|
|
},
|
2024-05-14 09:40:58 +02:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2023-08-25 07:11:33 +00:00
|
|
|
"exclude": ["node_modules"]
|
2022-12-02 10:55:56 +00:00
|
|
|
}
|