Skip to content

Commit

Permalink
fix: isolatedModules issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-north committed Dec 30, 2018
1 parent fff0e78 commit 15de1d0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
20 changes: 18 additions & 2 deletions editor/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,24 @@
"lib": ["scripthost", "es2015", "dom"],
"rootDir": ".",
"moduleResolution": "node",
"isolatedModules": false
"target": "es2017",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noEmitOnError": false,
"noEmit": true,
"inlineSourceMap": true,
"inlineSources": true,
"baseUrl": ".",
"module": "es6"
},
"extends": "../tsconfig.json",
"include": ["index.ts", "./**/*.ts"]
}
1 change: 0 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"target": "es2017",
"allowJs": true,
"moduleResolution": "node",
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
Expand Down

0 comments on commit 15de1d0

Please sign in to comment.