tooling(typings): new linter for typings (#3827)

This commit is contained in:
Crawl
2020-02-24 17:56:44 +01:00
committed by GitHub
parent e6d22527bb
commit 98a552107e
4 changed files with 134 additions and 178 deletions

View File

@@ -1,13 +1,21 @@
{
"compilerOptions": {
"strict": true,
"moduleResolution": "node",
"declaration": false,
"removeComments": false,
"alwaysStrict": true,
"pretty": true,
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"typings/index.d.ts"
]
"target": "es2019",
"lib": [
"esnext",
"esnext.array",
"esnext.asynciterable",
"esnext.intl",
"esnext.symbol"
],
"sourceMap": false,
"skipLibCheck": true
}
}