Files
DefinitelyTyped/jquery-toastmessage-plugin/tsconfig.json
Joe Skeen 795687164e Add definitions for jquery-toastmessage-plugin (#14625)
* Add definitions for jquery-toastmessage-plugin

* Add tslint.json

* enable strict null checks

* Fix linting errors

* target module "commonjs" to pass Travis test (even though no modules are used)

* add 'lib' to taconfig.json to pass Travis test

* add 'dom' to lib in tsconfig.json
2017-03-10 16:18:23 -08:00

20 lines
454 B
JSON

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