-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 604 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 604 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
{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "es2017",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["DOM", "ES5", "ES6", "ES7", "ES2017", "dom.iterable"],
"types": [
"node",
"@wdio/globals/types",
"@wdio/mocha-framework",
"wdio-obsidian-service"
],
"skipLibCheck": true
},
"include": ["**/*.ts"],
"exclude": ["./runner/quartz/**/*"]
}