Add type definitions for 'printf' (#14821)

* Add definitions for 'printf'

* Add "lib" to tsconfig.json

* Fix link
This commit is contained in:
Aluísio Augusto Silva Gonçalves
2017-03-10 20:18:53 -03:00
committed by Mohamed Hegazy
parent a43da75444
commit 253d42273d
4 changed files with 42 additions and 0 deletions

22
printf/tsconfig.json Normal file
View File

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