Skip to content

Commit d7b67b4

Browse files
authored
chore(frontend): add jsconfig (#546)
1 parent b0c2cfe commit d7b67b4

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

frontend/.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ testem.log
1919
*.swp
2020
*.orig
2121

22-
# vscode
23-
jsconfig.json
24-
2522
/.vscode/
2623
/.idea/
2724

frontend/jsconfig.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"compilerOptions": {
3+
// The combination of `baseUrl` with `paths` allows Ember's classic package
4+
// layout, which is not resolvable with the Node resolution algorithm, to
5+
// work with TypeScript.
6+
"allowJs": true,
7+
"baseUrl": ".",
8+
"paths": {
9+
"timed/tests/*": [
10+
"tests/*"
11+
],
12+
"timed/mirage/*": [
13+
"mirage/*"
14+
],
15+
"timed/*": [
16+
"app/*"
17+
],
18+
"*": [
19+
"types/*"
20+
]
21+
}
22+
},
23+
"include": [
24+
"app/**/*",
25+
"tests/**/*",
26+
"types/**/*",
27+
"mirage/**/*"
28+
]
29+
}

0 commit comments

Comments
 (0)