DefinitelyTyped/types/electron-settings/tsconfig.json
Ian Copp ad0f7f7838 Add electron-settings module (#16052)
* Add electron-settings package

* Correct for JSON typing

* Update to export interface instead of class
2017-04-21 13:51:43 -07:00

23 lines
461 B
JSON

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