forked from UniversalViewer/universalviewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
48 lines (48 loc) · 985 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"src": ["./src/**/*.ts"],
"compilerOptions": {
"module": "amd",
"sourceMap": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"noLib": false,
"lib": ["es6", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": false,
"removeComments": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"types": [
"@iiif/manifold",
"base-component",
"exjs",
"http-status-codes",
"iiif-av-component",
"iiif-gallery-component",
"iiif-metadata-component",
"iiif-tree-component",
"jest",
"jquery-plugins",
"jquery",
"key-codes",
"manifesto.js",
"modernizr",
"requirejs",
"three",
"utils",
"virtex3d"
]
},
"files": [
"src/Definitions.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts"
],
"include": [
"src/**/*"
]
}