This commit is contained in:
Andras Schmelczer 2025-07-08 22:43:22 +01:00
parent 693705ae62
commit f1be16221c
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 43 additions and 48 deletions

View file

@ -1,17 +1,14 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"declaration": true,
"declarationDir": "./dist/types",
"skipLibCheck": true,
"inlineSourceMap": true
},
"exclude": [
"./dist",
"**/*.test.ts"
]
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"declaration": true,
"declarationDir": "./dist/types",
"skipLibCheck": true,
"inlineSourceMap": true
},
"exclude": ["./dist", "**/*.test.ts"]
}