DefinitelyTyped/types/atob/tsconfig.json
John Wright e1a9b0af73 Add the atob & btoa npm module definitions (#25416)
* feat(types): add the atob btoa npm module definitions

* style(lint): shorten typescript version

* chore(tslint): remove unnecessary rules

* chore(tslint): fix linting errors
2018-05-07 11:49:20 -07:00

22 lines
463 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"lib": ["es6"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"atob-tests.ts"
]
}