28 строки
557 B
JSON
28 строки
557 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"module": "commonjs",
|
|
"target": "ES2017",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
// "listFiles": true,
|
|
// "noErrorTruncation": true,
|
|
|
|
"resolveJsonModule": true,
|
|
"diagnostics": true
|
|
},
|
|
"include": [
|
|
"lighthouse-cli/**/*.js",
|
|
"lighthouse-core/**/*.js",
|
|
"clients/**/*.js",
|
|
"build/**/*.js",
|
|
"./types/**/*.d.ts",
|
|
],
|
|
"exclude": [
|
|
"lighthouse-core/test/**/*.js",
|
|
"clients/test/**/*.js",
|
|
"lighthouse-cli/test/fixtures/**/*.js",
|
|
]
|
|
}
|