{ "name": "alurabank", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo "Error: no test specified" && exit 1", "server": "lite-server --baseDir=dist", "compile": "tsc", "watch": "tsc -w", "start": "concurrently "npm run watch" "npm run server"" }, "author": "", "license": "ISC", "devDependencies": { "concurrently": "^6.5.1", "lite-server": "^2.6.1", "typescript": "^4.2.2" } }
{ "compilerOptions": { "outDir": "dist/js", "target": "ES6", "noEmitOnError": true }, "include": [ "app/*/" ] }