systemjs/test/tests/testpkg/system.json
2017-01-23 10:38:15 +02:00

26 lines
602 B
JSON

{
"README": "This is not encouraging a system.json, which is a bad idea.",
"main": ["wrong-main"],
"format": "cjs",
"defaultExtension": "js",
"meta": {
"*.json": { "loader": "json" },
"test.ts": true
},
"map": {
"./noext": "./json.json",
"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"
}
}