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:
Henrik Giesel 2021-10-03 16:14:41 +02:00
parent 91c9154ea3
commit 30000ce36e
11 changed files with 4 additions and 10 deletions

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/change-notetype"],
"include": ["*"],
"references": [
{ "path": "../lib" },

View file

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

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/congrats"],
"include": ["*"],
"references": [{ "path": "../lib" }]
}

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/deck-options"],
"include": ["*"],
"references": [
{ "path": "../lib" },

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/editable"],
"include": ["*"],
"references": [
{ "path": "../components" },

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/editor"],
"include": ["*"],
"references": [
{ "path": "../components" },

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/html-filter"],
"include": ["*"],
"references": [],
"compilerOptions": {

View file

@ -1,7 +1,6 @@
{
"extends": "../tsconfig.json",
"include": ["*"],
"rootDirs": ["../../bazel-bin/ts/lib"],
"references": [],
"compilerOptions": {
"types": ["jest"]

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/reviewer"],
"include": ["*"],
"references": [{ "path": "../lib" }]
}

View file

@ -1,6 +1,5 @@
{
"extends": "../tsconfig.json",
"rootDirs": ["../../bazel-bin/ts/sveltelib"],
"include": ["*"],
"references": [{ "path": "../lib" }]
}

View file

@ -32,6 +32,10 @@
// "outDir": "dist",
// "rootDir": "..",
"rootDir": ".",
"rootDirs": [
// for VS code
"../bazel-bin/ts"
],
"baseUrl": ".",
"paths": {},
"types": [],