DefinitelyTyped/har-format/tsconfig.json
Michael Mrowetz 63fb2e895a add har-format - typings for HAR files (#14932)
* Add type definition for `HAR` - HTTP Archive 1.2

* fix formating
2017-03-09 22:48:39 -08:00

22 lines
453 B
JSON

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