Skip to content

Commit

Permalink
typescript config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Shady Khalifa committed May 22, 2018
1 parent 9d069b1 commit 4f7d6b6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "build",
"preserveConstEnums": true,
"rootDir": "./src",
"baseUrl": ".",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"target": "es2017",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es7"
]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts"
]
}

0 comments on commit 4f7d6b6

Please sign in to comment.