1
I am error when simulating my application in typescript, the generated error is:
Cannot GET /
My tsconfig.json file from my application is simple, it only contains the following settings:
{
"compilerOptions": {
"target": "es6",
"outDir": "assets/js",
"noEmitOnError": true,
"noImplicitAny": true,
"removeComments": true,
"module": "system",
"strictNullChecks": true
},
"include": [
"assets/ts/**/*"
]
}
I am taking a print of the root of my project if the error is repository:
I appreciate all your help!
No error on the console? If you haven’t tried it yet, could you try pressing F12 and tell us if you have any errors to try.
– Herbert Junior