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": { "compilerOptions": {
"module": "ESNext", "module": "ESNext",
"target": "ESNext", "target": "ES2017",
"strict": true, "strict": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,
"esModuleInterop": true, "esModuleInterop": true,
"moduleResolution": "bundler", "moduleResolution": "bundler",
"declaration": true,
"declarationDir": "./dist/types",
"outDir": "./dist", "outDir": "./dist",
"rootDir": ".", "rootDir": ".",
"skipLibCheck": true, "skipLibCheck": true,
"inlineSourceMap": true "inlineSourceMap": true
}, },
"exclude": ["./dist"] "exclude": [
} "./dist"
]
}

View file

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