Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Jan 23, 2024
1 parent 4fe2e29 commit d744e81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": ["dbaeumer.vscode-eslint"]
}
}
"extensions": ["dbaeumer.vscode-eslint"],
},
},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"*": ["typings/*"]
"*": ["typings/*"],
},
"esModuleInterop": true,
"resolveJsonModule": true,

"skipLibCheck": true
"skipLibCheck": true,
},
"include": [
"lib/**/*",
"tests/lib/**/*",
"tests-integrations/lib/**/*",
"tools/**/*",
"typings/**/*",
"docs/.vitepress/**/*"
"docs/.vitepress/**/*",
],
"exclude": ["dist/**/*"]
"exclude": ["dist/**/*"],
}

0 comments on commit d744e81

Please sign in to comment.