Added scanning barcodes with a camera

This commit is contained in:
2026-03-08 16:59:33 +00:00
parent b4f8489834
commit 5a37e5dd5f
404 changed files with 224181 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"extends": "../tsconfig",
"compilerOptions": {
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES2015",
"module": "commonjs",
"lib": [ "es2015", "esnext", "dom" ],
"types": [ "mocha", "chai", "sinon", "sinon-chai", "es6-promise" ],
"strictNullChecks": false,
"typeRoots": [
"../node_modules/@types",
"../type-definitions"
]
},
"include": [
".",
"../src"
]
}