Adjusted tsconfig and fixed critical whitespace missing in comment /s

This commit is contained in:
Sascha Englert 2018-09-20 17:25:57 +02:00
parent 5e362d9cc9
commit 40bb1edfac
2 changed files with 5 additions and 11 deletions

View File

@ -3,4 +3,4 @@ import objstr = require('obj-str');
const isTrue = () => true;
objstr({ foo: true, bar: false, baz: isTrue() });
//=> 'foo baz'
// => 'foo baz'

View File

@ -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"]
}