25 строки
407 B
JSON
25 строки
407 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",
|
|
"./typings/externs.d.ts"
|
|
],
|
|
"exclude": [
|
|
"lighthouse-cli/test/**/*.js"
|
|
]
|
|
}
|