1
0
Fork 0

Adding upstream version 1.2.0.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-04-22 16:41:43 +02:00
parent eac40c2ddc
commit e864a6175d
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
14 changed files with 584 additions and 0 deletions

24
tsconfig.json Normal file
View file

@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "es2015",
"target": "es2016",
"lib": [
"dom",
"es2016"
],
"baseUrl": "./",
"noImplicitAny": true,
"experimentalDecorators": true,
"sourceMap": false,
"moduleResolution": "node",
"strictNullChecks": true,
"declaration": true,
"noEmit": true,
"pretty": true,
"outDir": "ts-output"
},
"include": [
"src/decko.d.ts",
"tests/index.ts"
]
}