Skip to content

Commit

Permalink
Merge pull request #8 from jsenv/dev
Browse files Browse the repository at this point in the history
Update how package exports field influences importmap
  • Loading branch information
dmail committed Dec 13, 2019
2 parents 140babb + cf0c606 commit ef9be6a
Show file tree
Hide file tree
Showing 32 changed files with 528 additions and 177 deletions.
7 changes: 4 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
const { createConfig } = require("@jsenv/eslint-config")
const { createEslintConfig } = require("@jsenv/eslint-config")
const jsenvConfig = require("./jsenv.config.js")

const config = createConfig({
projectDirectoryPath: __dirname,
const config = createEslintConfig({
...jsenvConfig,
importResolutionMethod: "import-map",
})

Expand Down
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"program": "${workspaceFolder}/script/run-node/run-node.js",
"args": ["${relativeFile}"],
"autoAttachChildProcesses": true,
"sourceMaps": false,
// "smartStep": true,
"sourceMaps": true,
"smartStep": true,
"skipFiles": [
// force-multiline
"node_modules/@babel/template/**",
Expand Down
Loading

0 comments on commit ef9be6a

Please sign in to comment.