lighthouse/tsconfig.json

33 строки
770 B
JSON

{
"compilerOptions": {
"noEmit": true,
"module": "commonjs",
"target": "ES2017",
"allowJs": true,
"checkJs": true,
"strict": true,
// "listFiles": true,
"typeRoots": [
"@types",
"./typings"
],
"diagnostics": true
},
"include": [
"lighthouse-cli/**/*.js",
"lighthouse-core/audits/audit.js",
"lighthouse-core/lib/dependency-graph/**/*.js",
"lighthouse-core/lib/emulation.js",
"lighthouse-core/gather/computed/metrics/*.js",
"lighthouse-core/gather/connections/**/*.js",
"lighthouse-core/gather/gatherers/gatherer.js",
"lighthouse-core/scripts/*.js",
"lighthouse-core/audits/seo/robots-txt.js",
"./typings/*.d.ts"
],
"exclude": [
"lighthouse-cli/test/**/*.js"
]
}