This commit is contained in:
Andras Schmelczer 2025-07-07 22:33:01 +01:00
parent 70ef5cc0de
commit dd2a664d79
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 20 additions and 20 deletions

View file

@ -1,17 +1,17 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"target": "ES2017",
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"declaration": true,
"declarationDir": "./dist/types",
"outDir": "./dist",
"rootDir": ".",
"skipLibCheck": true,
"inlineSourceMap": true
},
"exclude": ["./dist"]
}
"exclude": [
"./dist"
]
}