forked from mebjas/html5-qrcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (32 loc) · 841 Bytes
/
tsconfig.json
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/*"
]
}
}