diff --git a/node/v6/tsconfig.json b/node/v6/tsconfig.json index adc8804da6..2663e36364 100644 --- a/node/v6/tsconfig.json +++ b/node/v6/tsconfig.json @@ -1,20 +1,23 @@ { - "files": [ - "index.d.ts", - "node-tests.ts" - ], "compilerOptions": { "module": "commonjs", "target": "es6", "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": false, - "baseUrl": "../", + "baseUrl": "../../", "typeRoots": [ - "../" + "../../" ], "types": [], + "paths": { + "node": ["node/v6"] + }, "noEmit": true, "forceConsistentCasingInFileNames": true - } + }, + "files": [ + "index.d.ts", + "node-tests.ts" + ] } \ No newline at end of file