Skip to content

Commit

Permalink
Add tsconfig to specify outDir
Browse files Browse the repository at this point in the history
  • Loading branch information
returnlytom committed May 10, 2017
1 parent 877f6ee commit 00359ac
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"outDir": "dist/",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"inlineSourceMap": true,
"inlineSources": true,
"declaration": true,
"lib": ["es2015", "dom"]
},
"files": [
"src/tooltip.directive.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"angularCompilerOptions": {
"skipTemplateCodegen": true
}
}

0 comments on commit 00359ac

Please sign in to comment.