Skip to content

Commit

Permalink
chore(frontend): add jsconfig (#546)
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras authored Dec 9, 2024
1 parent b0c2cfe commit d7b67b4
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
3 changes: 0 additions & 3 deletions frontend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ testem.log
*.swp
*.orig

# vscode
jsconfig.json

/.vscode/
/.idea/

Expand Down
29 changes: 29 additions & 0 deletions frontend/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
// The combination of `baseUrl` with `paths` allows Ember's classic package
// layout, which is not resolvable with the Node resolution algorithm, to
// work with TypeScript.
"allowJs": true,
"baseUrl": ".",
"paths": {
"timed/tests/*": [
"tests/*"
],
"timed/mirage/*": [
"mirage/*"
],
"timed/*": [
"app/*"
],
"*": [
"types/*"
]
}
},
"include": [
"app/**/*",
"tests/**/*",
"types/**/*",
"mirage/**/*"
]
}

0 comments on commit d7b67b4

Please sign in to comment.