DefinitelyTyped/types/karma-jasmine/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) c72d2cfdd0
feat(karma-jasmine): update to version 3.1 (#41989)
- version bump
- rewrite definition to extend karma configuration with Jasmine specifc
configuration properties support
- tests updated
- type definition configuration changes to match latest recommended
setup for linting and TS details

Thanks!
2020-02-06 10:13:49 -08:00

24 lines
494 B
JSON

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