Files
back-ts/tsconfig.json
T
Brandon Taylor 28f8258864 Updated dependencies, added jest, ts-ject, supertest and supporting types.
Added minimum jest configuration to package.json.
Added allowSyntheticDefaultImports to tsconfig.
Added sample e2e test for app controller.
2017-12-17 12:33:45 -05:00

24 lines
454 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": true,
"allowJs": true,
"outDir": "./dist"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}