2017-11-21 05:10:03 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmit": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "ES2017",
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"strict": true,
|
|
|
|
// "listFiles": true,
|
2018-06-20 21:23:56 +03:00
|
|
|
// "noErrorTruncation": true,
|
2017-11-21 05:10:03 +03:00
|
|
|
|
2018-07-31 00:47:19 +03:00
|
|
|
"resolveJsonModule": true,
|
2017-11-21 05:10:03 +03:00
|
|
|
"diagnostics": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"lighthouse-cli/**/*.js",
|
2018-05-04 01:08:46 +03:00
|
|
|
"lighthouse-core/**/*.js",
|
2018-10-26 02:11:04 +03:00
|
|
|
"clients/**/*.js",
|
|
|
|
"build/**/*.js",
|
2019-01-08 23:18:26 +03:00
|
|
|
"./types/**/*.d.ts",
|
2019-05-24 00:42:47 +03:00
|
|
|
"eslint-local-rules.js",
|
2017-11-21 05:10:03 +03:00
|
|
|
],
|
|
|
|
"exclude": [
|
2018-05-04 01:08:46 +03:00
|
|
|
"lighthouse-core/test/**/*.js",
|
2018-10-26 02:11:04 +03:00
|
|
|
"clients/test/**/*.js",
|
2019-01-08 23:18:26 +03:00
|
|
|
"lighthouse-cli/test/fixtures/**/*.js",
|
2017-11-21 05:10:03 +03:00
|
|
|
]
|
|
|
|
}
|