File: tsconfig.json

package info (click to toggle)
node-html5-qrcode 2.3.8%2Brepack-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,284 kB
  • sloc: javascript: 18,686; makefile: 15; sh: 14
file content (34 lines) | stat: -rw-r--r-- 841 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
    "compilerOptions": {
        "target": "es5",
        "module": "ES2015",
        "sourceMap": true,
        "moduleResolution": "Node",
        "declaration": true,
        "lib": ["DOM", "ES2017", "ES2018"],

        // ^ Build the transpiled javascript to transpiled/ dir.
        // Flags to ensure code quality.
        "strict": true,
        "noImplicitReturns": true,
        "noUnusedParameters": true,
        "experimentalDecorators": true,
        "removeComments": true,
        "preserveConstEnums": true,
        "noImplicitAny": true,

        // Allow javascript source to be built
        "allowJs": true
    },
    "files": [
        "src/index.ts"
    ],
    "paths": {
        "@scanapp/html5-qrcode": [
            "./dist"
        ],
        "@scanapp/html5-qrcode/*": [
            "./dist/*"
        ]
    }
}