mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* node.js: Add type guards for return types of util methods * use object instead of Object in isObject typeguard * use es2016 as target for Node 7 types Node 7 supports almost 99% of ES2015 and 100% of ES2016. Hence, its safe to use the target of es2016 in tsconfig.json * remove typeguard from isObject function * rename Symbol to symbol * remove es2016 target in tsconfig.json
24 lines
482 B
JSON
24 lines
482 B
JSON
{
|
|
"files": [
|
|
"index.d.ts",
|
|
"node-tests.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es5"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true
|
|
}
|
|
}
|