0

Here im using angular4 in visualstudio2015 updated3 im getting Error as systemjs.config not found enter image description here

Masterpage Code

 <title></title>
    <meta charset="utf-8" />
</head>
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="../../node_modules/core-js/client/shim.min.js"></script>
<script src="../../node_modules/zone.js/dist/zone.js"></script>
<script src="../../node_modules/reflect-metadata/Reflect.js"></script>
<script src="../../node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="../systemjs.config"></script>

<script>
    System.config({
        "defaultJSExtensions": true
    });

    System.import('../Modules/startup').catch(function (err) { console.error(err); });
</script>

1 Answer 1

1

Check your system.config.js , you need to have the configurations mapping done correctly, check if you have referred the .ts files right

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.