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