-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
33 lines (33 loc) · 922 Bytes
/
tsconfig.test.json
File metadata and controls
33 lines (33 loc) · 922 Bytes
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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": [ "es2015", "dom" ],
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"outDir": "dist-commonjs",
"skipLibCheck": true,
"sourceMap": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"resolveJsonModule": true,
"target": "es5",
"types": [
"node",
"manifesto.js",
"@iiif/vocabulary",
"@types/vitest"
]
},
"include": [
"src",
"__tests__/**/*"
]
}