diff --git a/.gitignore b/.gitignore index a2ffac2..be80d04 100644 --- a/.gitignore +++ b/.gitignore @@ -126,4 +126,4 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - +yarn.lock \ No newline at end of file diff --git a/package.json b/package.json index d0da36c..ee98a63 100644 --- a/package.json +++ b/package.json @@ -15,5 +15,8 @@ "crm" ], "author": "ODIT.Services", - "license": "MIT" + "license": "MIT", + "dependencies": { + "typeorm": "^0.2.29" + } } diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..95d6e28 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,36 @@ +{ + "compilerOptions": { + "lib": ["es5", "es6"], + "outDir": "build/compiled", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "target": "es5", + "module": "commonjs", + "moduleResolution": "node", + "importHelpers": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "sourceMap": true, + "noImplicitAny": true, + "declaration": true, + "noFallthroughCasesInSwitch": true, + "noImplicitReturns": true, + "stripInternal": true, + "pretty": true, + "strictNullChecks": true, + "noUnusedLocals": true, + "downlevelIteration": true + }, + "include": [ + "sample", + "src", + "test", + "models" + ], + "exclude": [ + "tmp", + "temp", + "build", + "node_modules" + ] +} \ No newline at end of file