DefinitelyTyped/types/karma/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) f3c1059da6
feat(karma): update to v4.4 (#42567)
* feat(karma): update to v4.4

- backward compatible v3 created
- new properties from v4 for karma.ConfigOptions
- new properties from v4 for karma.ClientOptions
- added new interfaces for v4 properties
- rewritten definitions for `plugins` and `files` to support documented
usage in v4 (new `type` in file patters, different ways of using
`plugins` in configuration)
- export default list of automated Karma browsers
- export default list of default Karma file types

https://github.com/karma-runner/karma/blob/master/docs/config/01-configuration-file.md
https://github.com/karma-runner/karma/blob/master/docs/config/02-files.md
https://github.com/karma-runner/karma/blob/master/docs/config/03-browsers.md
https://github.com/karma-runner/karma/blob/master/docs/config/05-plugins.md

Thanks!

* Change properties types as per PR comment

* Redefine plugins types as per PR comment

/cc @devoto13
2020-02-24 16:16:40 -08:00

24 lines
486 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",
"karma-tests.ts"
]
}