2025-01-17 10:28:24 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-02-25 11:59:17 +01:00
|
|
|
"target": "es2017",
|
|
|
|
|
"module": "preserve",
|
2025-01-17 10:28:24 +01:00
|
|
|
"rootDir": "src/",
|
|
|
|
|
"outDir": "build/",
|
2025-03-23 14:33:06 +01:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
|
2025-01-17 10:28:24 +01:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules/",
|
|
|
|
|
"build/"
|
|
|
|
|
]
|
|
|
|
|
}
|