lighthouse
Version:
Automated auditing, performance metrics, and best practices for the web.
21 lines (20 loc) • 393 B
JSON
{
"extends": "../tsconfig-base.json",
"compilerOptions": {
// Limit defs to base JS.
"lib": ["es2020", "es2022.intl"],
// Only include `@types/node` from node_modules/.
"types": ["node"],
// "listFiles": true,
},
"references": [
{"path": "../types/lhr/"},
],
"include": [
"**/*.js",
"types/**/*.d.ts",
],
"exclude": [
"test/**/*.js",
],
}