Skip to content

Commit

Permalink
fix(skeleton): allows TS plugin skeleton to support `import {...} fro…
Browse files Browse the repository at this point in the history
…m "resources"`

Thank @kennyfowler for the fix.
  • Loading branch information
3cp committed Apr 8, 2019
1 parent 114c14a commit eeb59c8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion skeleton/common/tsconfig.json__if_typescript
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
"lib": ["es2015", "dom"],
"moduleResolution": "node",
"allowJs": true,
"baseUrl": "src"
"baseUrl": "src",

// @if feat.plugin
"paths": { "resources": [ "" ] },
// @endif
},
"include": [
"./src/**/*.ts",
Expand Down

0 comments on commit eeb59c8

Please sign in to comment.