DefinitelyTyped/types/notifyjs/tsconfig.json
NateScarlet 1bf7dc0733 [notifyjs] Fix notifyjs is not a module (#25333)
* Fix types of 'notifyjs'

* Replace `export default` with `export =`
2018-05-07 07:56:26 -07:00

25 lines
554 B
JSON

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