added python-shell typings (#13533)

* added python-shell typings

* added no implicit this to true

* added tslint fixes
This commit is contained in:
Dolan
2016-12-25 00:40:33 +00:00
committed by Andy
parent f7295132c2
commit 4ccd1312fa
4 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"python-shell-tests.ts"
]
}