2023-08-25 07:11:33 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es5",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-10-15 17:09:56 +02:00
|
|
|
"noEmit": false,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2023-08-25 07:11:33 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./*", "../../node_modules/*"]
|
|
|
|
|
},
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "next"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
2023-08-25 10:42:19 +02:00
|
|
|
"include": ["**.d.ts", "**/*.ts", "**/*.tsx", "**/*.png, **/*.svg"],
|
2025-10-15 17:09:56 +02:00
|
|
|
"exclude": ["node_modules", "babel__core", "dist"]
|
2023-08-25 07:11:33 +00:00
|
|
|
}
|