DefinitelyTyped/types/array.from/tsconfig.json
ExE Boss 192a1b5b5b feat: Add array.from (#39055)
* feat: Add `array.from`

* docs(array.from): Add TSDoc comments

* docs(array.from): Improve TSDoc
2019-10-16 14:06:06 -07:00

23 lines
419 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es2015"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"implementation.d.ts",
"index.d.ts",
"polyfill.d.ts",
"shim.d.ts",
"array.from-tests.ts"
]
}