Error [Cannot GET] when simulating my application with lite-server with typescript

Asked

Viewed 73 times

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:

Diretório da minha aplicação

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.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.