2025-03-12 10:15:24 +00:00
|
|
|
{
|
|
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
|
|
|
"compilerOptions": {
|
2026-04-09 15:17:15 +01:00
|
|
|
"target": "esnext",
|
|
|
|
|
"lib": ["dom", "es2022", "esnext"],
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
2025-03-12 10:15:24 +00:00
|
|
|
"outDir": "lib",
|
|
|
|
|
"declarationMap": true,
|
2026-04-09 15:17:15 +01:00
|
|
|
"module": "es2022",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"types": [],
|
2025-03-12 10:15:24 +00:00
|
|
|
"allowImportingTsExtensions": false
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|