mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 01:06:35 -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",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/change-notetype"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../lib" },
|
{ "path": "../lib" },
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/components"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [{ "path": "../lib" }, { "path": "../sveltelib" }]
|
"references": [{ "path": "../lib" }, { "path": "../sveltelib" }]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/congrats"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [{ "path": "../lib" }]
|
"references": [{ "path": "../lib" }]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/deck-options"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../lib" },
|
{ "path": "../lib" },
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/editable"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../components" },
|
{ "path": "../components" },
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/editor"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../components" },
|
{ "path": "../components" },
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/html-filter"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [],
|
"references": [],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"rootDirs": ["../../bazel-bin/ts/lib"],
|
|
||||||
"references": [],
|
"references": [],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"types": ["jest"]
|
"types": ["jest"]
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/reviewer"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [{ "path": "../lib" }]
|
"references": [{ "path": "../lib" }]
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"rootDirs": ["../../bazel-bin/ts/sveltelib"],
|
|
||||||
"include": ["*"],
|
"include": ["*"],
|
||||||
"references": [{ "path": "../lib" }]
|
"references": [{ "path": "../lib" }]
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,10 @@
|
||||||
// "outDir": "dist",
|
// "outDir": "dist",
|
||||||
// "rootDir": "..",
|
// "rootDir": "..",
|
||||||
"rootDir": ".",
|
"rootDir": ".",
|
||||||
|
"rootDirs": [
|
||||||
|
// for VS code
|
||||||
|
"../bazel-bin/ts"
|
||||||
|
],
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {},
|
"paths": {},
|
||||||
"types": [],
|
"types": [],
|
||||||
|
|
Loading…
Reference in a new issue