DefinitelyTyped/types/weighted/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 7b855576c6
update(weighted): DT definition changes (#45939)
This adds changes discussed in merged PR:
`#45633

- CommonJS module shape
- proper alias for select
- TS config and TSLint config updated to just follow DT defaults
- tests amended with modern syntax - but still using existing tests

Thanks!
2020-07-10 08:43:13 -07:00

24 lines
489 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"weighted-tests.ts"
]
}