1
0
Fork 0
decko/tsconfig.json
Daniel Baumann e864a6175d
Adding upstream version 1.2.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-22 16:41:43 +02:00

24 lines
451 B
JSON

{
"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"
]
}