UNPKG

cfg-test

Version:

In-source testing using Node.js Test Runner

8 lines (7 loc) 593 B
{ "version": 3, "sources": ["../../src/core/config.ts"], "sourcesContent": ["type JsonPrimitive = string | number | boolean | null;\n\ntype JsonArray = JsonValue[];\n\ntype JsonObject = { [key: string]: JsonValue };\n\ntype JsonValue = JsonPrimitive | JsonArray | JsonObject;\n\nexport type Nil = null | undefined;\n\nexport interface Config {\n env?: { [P in string]?: string | Nil } | Nil;\n globals?: { [key: string]: JsonValue } | Nil;\n import?: string | string[] | Nil;\n require?: string | string[] | Nil;\n}\n"], "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;", "names": [] }