i create my first project and started on angular 2 getstarted
I changed my config tsconfig.json with
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "dist" <---- NEW
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
and I add on my package.json "lite": "lite-server --baseDir ./dist"
Why the app don't start? Please Help me. Thank's Marco.