DefinitelyTyped/types/jasmine/tsconfig.json
Peter Safranek fac528820a [jasmine] Introduce major version 3 (#30366)
* [jasmine] Introduce major version 3

* Remove patch version number

* Convert type assertion from "angle bracket" to "as" style
2018-11-18 17:14:58 -08:00

25 lines
508 B
JSON

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