2025-08-07 23:24:56 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2025-08-07 23:46:13 +02:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2025-08-07 23:24:56 +02:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"esModuleInterop": true,
|
2025-08-07 23:46:13 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-08-08 02:18:23 +02:00
|
|
|
"typeRoots": ["./src/types", "./node_modules/@types"],
|
2025-08-07 23:24:56 +02:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|