DefinitelyTyped/printf/tsconfig.json
Aluísio Augusto Silva Gonçalves 253d42273d Add type definitions for 'printf' (#14821)
* Add definitions for 'printf'

* Add "lib" to tsconfig.json

* Fix link
2017-03-10 15:18:53 -08:00

23 lines
450 B
JSON

{
"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"
]
}