Anki/ts/editable/tsconfig.json
Henrik Giesel e1d4292ce3 Put rootDirs into subprojects
- typings do not work for any ts or svelte files
- if we set the 'rootDirs' in ts/tsconfig.json to '../bazel-bin/ts' and then inherit
  them from e.g. editor, the root will be changed to '../../bazel-bin/ts',
  however editor needs look in '../../bazel-bin/ts/editor' instead.
2021-10-02 22:00:41 +02:00

10 lines
238 B
JSON

{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/editable"],
"include": ["*"],
"references": [
{ "path": "../components" },
{ "path": "../lib" },
{ "path": "../sveltelib" }
]
}