Skip to content

Commit

Permalink
updated stack
Browse files Browse the repository at this point in the history
  • Loading branch information
RillingDev committed Nov 8, 2019
1 parent 25eb11a commit dca1d3e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
4 changes: 1 addition & 3 deletions spec/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": "../dist/",
"sourceMap": false,
"declarationMap": false
"outDir": "../dist/"
},
"include": [
"./",
Expand Down
7 changes: 5 additions & 2 deletions src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"module": "esnext",
"outDir": "../dist/esm/",
"declaration": true,
"newLine": "LF"
"sourceMap": true,
"declarationMap": true
},
"include": ["./"]
"include": [
"./"
]
}
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
"rootDir": "./",
"baseUrl": "./",
"target": "esnext",
"composite": true,
"newLine": "LF",
"removeComments": false,
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"removeComments": false,
"sourceMap": true,
"declarationMap": true,
"composite": true
},
"include": [],
"exclude": [
Expand All @@ -25,4 +23,4 @@
"path": "./spec/src/tsconfig.json"
}
]
}
}

0 comments on commit dca1d3e

Please sign in to comment.