aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/testpkg/system.json
blob: b2092752ce7ff173c4239059e576d2638cce5b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "README": "This is not encouraging a system.json, which is a bad idea.",

  "main": ["wrong-main"],
  "format": "cjs",
  "defaultExtension": "js",
  "meta": {
    "*.json": { "loader": "json" },
    "noext": { "alias": "./json.json" },
    "test.ts": true
  },
  "map": {
    "json": "./json.js",
    "./json": "./json.json",
    "./dir/": "./dir/index",
    "./dir2.js": "./dir2/index.json",
    "./dir/test": "global-test",
    "./env-module": {
      "browser": "./env-module-browser.js"
    },
    "p": "./polate.js",
    "./conditional1": "./interpolate.js",
    "./conditional2": "./inter#{p}.js"
  },
  "depCache": {
    "./dir2/index.json": ["../depcache-test"]
  }
}