We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c2cfe commit d7b67b4Copy full SHA for d7b67b4
frontend/.gitignore
@@ -19,9 +19,6 @@ testem.log
19
*.swp
20
*.orig
21
22
-# vscode
23
-jsconfig.json
24
-
25
/.vscode/
26
/.idea/
27
frontend/jsconfig.json
@@ -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
+ "*": [
+ "types/*"
+ ]
+ }
+ },
+ "include": [
+ "app/**/*",
+ "tests/**/*",
+ "types/**/*",
+ "mirage/**/*"
28
29
+}
0 commit comments