forked from nut-tree/TemplateMatcher
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
32 lines (31 loc) · 814 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
{
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"lib": ["es6"],
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"esModuleInterop": true
},
"include": [
"lib/**/*.ts",
"index.ts",
"NOTICE.ts",
"tests/bound-value.function.spec.ts",
"tests/image-processor.class.spec.ts",
"tests/image-reader.class.spec.ts",
"tests/match-image.function.spec.ts",
"tests/scale-image.function.spec.ts",
"tests/scale-location.function.spec.ts",
"tests/template-matching-finder.class.spec.ts",
"lib/types.ts"
],
"exclude": ["node_modules", "dist", "tests"]
}