Files
DefinitelyTyped/types/k6/tsconfig.json
bookmoonsandBenjamin Lichtman 0fffa9685f [k6] Restore real world usage tests (#36473)
* k6: Rename JSON JSONValue

Name JSON collides with the global JSON API.

* k6: Restore real world usage tests
2019-06-27 09:17:26 -07:00

37 lines
874 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [ "es2015" ],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [ "../" ],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true
},
"files": [
"crypto.d.ts",
"encoding.d.ts",
"global.d.ts",
"html.d.ts",
"http.d.ts",
"index.d.ts",
"metrics.d.ts",
"options.d.ts",
"ws.d.ts",
"k6-tests.ts",
"test/crypto.ts",
"test/encoding.ts",
"test/global.ts",
"test/html.ts",
"test/http.ts",
"test/index.ts",
"test/metrics.ts",
"test/ws.ts"
]
}