2024-04-30 11:39:16 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-11-21 14:55:28 +01:00
|
|
|
"target": "es5",
|
2024-04-30 11:39:16 +02:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
2025-11-21 14:55:28 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noEmit": false,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2024-04-30 11:39:16 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
2025-11-21 14:55:28 +01:00
|
|
|
"moduleResolution": "node",
|
2024-04-30 11:39:16 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
2025-11-21 14:55:28 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./*", "../../node_modules/*"]
|
|
|
|
|
},
|
2024-04-30 11:39:16 +02:00
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
2025-11-21 14:55:28 +01:00
|
|
|
]
|
2024-04-30 11:39:16 +02:00
|
|
|
},
|
2025-11-21 14:55:28 +01:00
|
|
|
"include": ["**.d.ts", "**/*.ts", "**/*.tsx", "**/*.png, **/*.svg"],
|
|
|
|
|
"exclude": ["node_modules", "babel__core", "dist"]
|
2024-04-30 11:39:16 +02:00
|
|
|
}
|