Skip to content

Commit

Permalink
chore: Emit typescript output for node 10+.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseppstein committed Mar 27, 2020
1 parent b784582 commit f9e5e57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions packages/broccoli-eyeglass/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"rootDir": "src",
"baseUrl": "src",
"composite": true,
"downlevelIteration": true,
"moduleResolution": "node",
"outDir": "./lib",
"noImplicitAny": true,
Expand All @@ -20,9 +19,9 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": [
"es6"
"es2018"
],
"target": "es5",
"target": "es2018",
"sourceMap": true,
"paths": {
"heimdalljs": ["../../eyeglass/src/types/heimdalljs"],
Expand Down
5 changes: 2 additions & 3 deletions packages/ember-cli-eyeglass/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@
"rootDir": "src",
"baseUrl": "src",
"composite": true,
"downlevelIteration": true,
"moduleResolution": "node",
"outDir": "./lib",
"alwaysStrict": true,
"strictBindCallApply": true,
"declaration": true,
"declarationMap": true,
"lib": [
"es6"
"es2018"
],
"target": "es5",
"target": "es2018",
"sourceMap": true,
"paths": {
"node-sass": ["../../eyeglass/@types/node-sass"],
Expand Down
5 changes: 2 additions & 3 deletions packages/eyeglass/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"rootDir": "src",
"baseUrl": "src",
"composite": true,
"downlevelIteration": true,
"moduleResolution": "node",
"outDir": "./lib",
"noImplicitAny": true,
Expand All @@ -20,9 +19,9 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": [
"es6"
"es2018"
],
"target": "es5",
"target": "es2018",
"sourceMap": true,
"paths": {
"*": ["types/*"],
Expand Down

0 comments on commit f9e5e57

Please sign in to comment.