systemjs/test/tests/testpkg/system.json
2015-09-13 17:34:22 +02:00

25 lines
613 B
JSON

{
"README": "This is not encouraging a system.json, which is a bad idea.",
"main": ["wrong-main"],
"basePath": "lib",
"format": "cjs",
"defaultExtension": "js",
"meta": {
"*.json": { "loader": "./json.js" },
"noext": { "alias": "./json.json" },
"test.ts": true
},
"map": {
"./json": "./json.json",
"./dir/": "./dir/index",
"./dir2": "./dir2/index.json",
"./dir/test": "global-test",
"./env-module": {
"browser": "./env-module-browser.js"
},
"p": "./polate.js",
"./conditional1": "./interpolate.js#?p",
"./conditional2": "./inter#{p}.js"
}
}