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

22 lines
507 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.js",
"./dir2": "./dir2/index.json",
"./dir/test": "global-test",
"./env-module": {
"browser": "./env-module-browser.js"
}
}
}