mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Merge pull request #17027 from ikokostya/node-8
[node] Add definition for Node.js v8
This commit is contained in:
4
types/node/index.d.ts
vendored
4
types/node/index.d.ts
vendored
@@ -1,4 +1,4 @@
|
||||
// Type definitions for Node.js v7.x
|
||||
// Type definitions for Node.js v8.x
|
||||
// Project: http://nodejs.org/
|
||||
// Definitions by: Microsoft TypeScript <http://typescriptlang.org>
|
||||
// DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
/************************************************
|
||||
* *
|
||||
* Node.js v7.x API *
|
||||
* Node.js v8.x API *
|
||||
* *
|
||||
************************************************/
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es5"
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
|
||||
4351
types/node/v7/index.d.ts
vendored
Normal file
4351
types/node/v7/index.d.ts
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2467
types/node/v7/node-tests.ts
Normal file
2467
types/node/v7/node-tests.ts
Normal file
File diff suppressed because it is too large
Load Diff
28
types/node/v7/tsconfig.json
Normal file
28
types/node/v7/tsconfig.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"files": [
|
||||
"index.d.ts",
|
||||
"node-tests.ts"
|
||||
],
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": false,
|
||||
"baseUrl": "../../",
|
||||
"typeRoots": [
|
||||
"../../"
|
||||
],
|
||||
"paths": {
|
||||
"node": [
|
||||
"node/v7"
|
||||
]
|
||||
},
|
||||
"types": [],
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"isolatedModules": true
|
||||
}
|
||||
}
|
||||
33
types/node/v7/tslint.json
Normal file
33
types/node/v7/tslint.json
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"extends": "dtslint/dt.json",
|
||||
"rules": {
|
||||
// All are TODOs
|
||||
"adjacent-overload-signatures": false,
|
||||
"align": false,
|
||||
"array-type": false,
|
||||
"ban-types": false,
|
||||
"callable-types": false,
|
||||
"comment-format": false,
|
||||
"dt-header": false,
|
||||
"import-spacing": false,
|
||||
"interface-over-type-literal": false,
|
||||
"jsdoc-format": false,
|
||||
"max-line-length": false,
|
||||
"no-consecutive-blank-lines": false,
|
||||
"no-empty-interface": false,
|
||||
"no-internal-module": false,
|
||||
"no-namespace": false,
|
||||
"no-padding": false,
|
||||
"no-string-throw": false,
|
||||
"no-var": false,
|
||||
"object-literal-shorthand": false,
|
||||
"one-line": false,
|
||||
"only-arrow-functions": false,
|
||||
"prefer-method-signature": false,
|
||||
"semicolon": false,
|
||||
"strict-export-declare-modifiers": false,
|
||||
"typedef-whitespace": false,
|
||||
"unified-signatures": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user