forked from GoogleChrome/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (32 loc) · 812 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
{
"compilerOptions": {
"noEmit": true,
"module": "commonjs",
"target": "ES2017",
"allowJs": true,
"checkJs": true,
"strict": true,
// "listFiles": true,
// "noErrorTruncation": true,
"typeRoots": [
"@types",
"./typings"
],
"diagnostics": true
},
"include": [
// TODO(bckenny): unnecessary workaround until https://github.com/Microsoft/TypeScript/issues/24062
"node_modules/@types/node/index.d.ts",
"third-party/devtools/*.js",
"lighthouse-cli/**/*.js",
"lighthouse-core/**/*.js",
"lighthouse-extension/app/src/*.js",
"./typings/*.d.ts",
],
"exclude": [
"lighthouse-cli/test/**/*.js",
"lighthouse-core/test/**/*.js",
"lighthouse-core/closure/**/*.js",
"lighthouse-core/third_party/src/**/*.js",
]
}