DefinitelyTyped/types/ssri/tsconfig.json
ExE Boss a74f5af28c fix(ssri): Return Promise type by default (#34892)
* fix(ssri): Return `Promise` type by default

* test(ssri): Use `$ExpectType` DTSLint assertions
2019-04-22 11:41:06 -05:00

24 lines
365 B
JSON

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