diff --git a/frontend/.gitignore b/frontend/.gitignore index d10296ee..a609073b 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore @@ -19,9 +19,6 @@ testem.log *.swp *.orig -# vscode -jsconfig.json - /.vscode/ /.idea/ diff --git a/frontend/jsconfig.json b/frontend/jsconfig.json new file mode 100644 index 00000000..b2124b4e --- /dev/null +++ b/frontend/jsconfig.json @@ -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/**/*" + ] +} \ No newline at end of file