While delving into TypeScript, I have come across an error related to node modules.
https://i.sstatic.net/IPx5A.png
Upon clicking the anonymous function, it leads me to the following code snippet.
https://i.sstatic.net/4U8dY.png
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Learning TypeScript</title>
<script src="node_modules/systemjs/dist/system.js"></script>
</head>
<body>
<script>
System.import('app.js')
</script>
</body>
</html>
To see my demo project, click here.