├── .gitignore ├── README.md ├── Resources └── image.jpg ├── package.json ├── public ├── api │ └── api.json ├── css │ └── main.css ├── index.html └── js │ ├── expenses.js │ └── index.js ├── src ├── expenses.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/README.md -------------------------------------------------------------------------------- /Resources/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/Resources/image.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/package.json -------------------------------------------------------------------------------- /public/api/api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/public/api/api.json -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/public/css/main.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/expenses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/public/js/expenses.js -------------------------------------------------------------------------------- /public/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/public/js/index.js -------------------------------------------------------------------------------- /src/expenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/src/expenses.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosrivasr/typescript-frontend-app/HEAD/tsconfig.json --------------------------------------------------------------------------------