forked from UniversalViewer/universalviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 886 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
{
"src": ["./src/**/*.ts"],
"compilerOptions": {
"module": "amd",
"sourceMap": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"noLib": false,
"lib": ["es6", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": false,
"removeComments": false,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"types": [
"@edsilv/exjs",
"@edsilv/http-status-codes",
"@edsilv/jquery-plugins",
"@edsilv/key-codes",
"@edsilv/utils",
"@iiif/base-component",
"@iiif/manifold",
"jest",
"jquery",
"manifesto.js",
"modernizr",
"requirejs",
"three",
"uv-custom",
"virtex3d"
]
},
"exclude": [
"src/**/*.test.ts",
"src/**/*.spec.ts"
],
"include": [
"src/**/*"
]
}