Skip to content

Commit

Permalink
tsconfig 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seotory authored and seotory committed Jul 6, 2017
1 parent d877c3b commit 138793f
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# Visual Studio Code - https://code.visualstudio.com/
.settings/
.vscode/
tsconfig.json
jsconfig.json

### Node ###
# Logs
Expand Down
27 changes: 27 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"lib": [
"dom",
"es2015",
"es2015.promise"
],
"types": [
"node",
"vue-typescript-import-dts"
],
// typeRoots option has been previously configured
"typeRoots": [
// add path to @types
"node_modules/@types"
],
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true
},
"include": [
"src/**/*.ts"
],
"compileOnSave": false
}

0 comments on commit 138793f

Please sign in to comment.