DefinitelyTyped/types/bootstrap-fileinput/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) 480921ca85
feat(bootstrap-fileinput): add missing instance methods (#43312)
- missing methods added
- tests added to package
- TS details updated to match current DT recommendations
- formatting with DT prettier settings

https://plugins.krajee.com/file-input/plugin-methods

/cc @aliemre1990

Thanks!

Fixes: #43288
2020-03-31 14:45:44 -07:00

25 lines
519 B
JSON

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