├── .env ├── .eslintrc.js ├── .gitignore ├── .prettierc.js ├── .vscode └── launch.json ├── README.md ├── __tests__ ├── routes.spec.ts └── sample.spec.ts ├── jest.config.js ├── nodemon.json ├── package.json ├── src ├── app.ts ├── index.ts ├── routes.ts └── sample.ts ├── tsconfig.json └── tslint.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | /coverage -------------------------------------------------------------------------------- /.prettierc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/.prettierc.js -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/routes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/__tests__/routes.spec.ts -------------------------------------------------------------------------------- /__tests__/sample.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/__tests__/sample.spec.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/jest.config.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/src/sample.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jizusun/express-typescript-jest-template/HEAD/tslint.json --------------------------------------------------------------------------------