mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Revert "Put rootDirs into subprojects"
This partially reverts commit e1d4292ce3
.
It seems like this might not be necessary after all.
However some other change made on this branch seems to have fixed
the .svelte.d.ts imports
This commit is contained in:
parent
91c9154ea3
commit
30000ce36e
11 changed files with 4 additions and 10 deletions
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/change-notetype"],
|
||||
"include": ["*"],
|
||||
"references": [
|
||||
{ "path": "../lib" },
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/components"],
|
||||
"include": ["*"],
|
||||
"references": [{ "path": "../lib" }, { "path": "../sveltelib" }]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/congrats"],
|
||||
"include": ["*"],
|
||||
"references": [{ "path": "../lib" }]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/deck-options"],
|
||||
"include": ["*"],
|
||||
"references": [
|
||||
{ "path": "../lib" },
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/editable"],
|
||||
"include": ["*"],
|
||||
"references": [
|
||||
{ "path": "../components" },
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/editor"],
|
||||
"include": ["*"],
|
||||
"references": [
|
||||
{ "path": "../components" },
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/html-filter"],
|
||||
"include": ["*"],
|
||||
"references": [],
|
||||
"compilerOptions": {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"include": ["*"],
|
||||
"rootDirs": ["../../bazel-bin/ts/lib"],
|
||||
"references": [],
|
||||
"compilerOptions": {
|
||||
"types": ["jest"]
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/reviewer"],
|
||||
"include": ["*"],
|
||||
"references": [{ "path": "../lib" }]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"rootDirs": ["../../bazel-bin/ts/sveltelib"],
|
||||
"include": ["*"],
|
||||
"references": [{ "path": "../lib" }]
|
||||
}
|
||||
|
|
|
@ -32,6 +32,10 @@
|
|||
// "outDir": "dist",
|
||||
// "rootDir": "..",
|
||||
"rootDir": ".",
|
||||
"rootDirs": [
|
||||
// for VS code
|
||||
"../bazel-bin/ts"
|
||||
],
|
||||
"baseUrl": ".",
|
||||
"paths": {},
|
||||
"types": [],
|
||||
|
|
Loading…
Reference in a new issue