mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Adjusted tsconfig and fixed critical whitespace missing in comment /s
This commit is contained in:
parent
5e362d9cc9
commit
40bb1edfac
@ -3,4 +3,4 @@ import objstr = require('obj-str');
|
||||
const isTrue = () => true;
|
||||
|
||||
objstr({ foo: true, bar: false, baz: isTrue() });
|
||||
//=> 'foo baz'
|
||||
// => 'foo baz'
|
||||
|
||||
@ -1,22 +1,16 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"lib": ["es6"],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
"baseUrl": "../",
|
||||
"typeRoots": [
|
||||
"../"
|
||||
],
|
||||
"typeRoots": ["../"],
|
||||
"strictFunctionTypes": true,
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"obj-str-tests.ts"
|
||||
]
|
||||
"files": ["index.d.ts", "obj-str-tests.ts"]
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user