mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-16 13:52:51 +00:00
* 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
24 lines
486 B
JSON
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"
|
|
]
|
|
}
|