DefinitelyTyped/types/notp/tsconfig.json
Wilfred Tan 1f2dadb728 @types/notp { New type definition } (#37650)
* [@types/notp]
Initial commit

* [@types/notp]
Code revision and filling up test case

* [@types/notp]
+ Added missing optional 'window' to 'TOTPVerifyOpt'.
# Shortened the names for the interfaces (final)
# Minor edits to comments
2019-08-19 10:25:29 -07:00

24 lines
485 B
JSON

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