Skip to content

Commit 2d8be67

Browse files
committed
Ensure rootDir is consistently specified.
1 parent 0fc6bda commit 2d8be67

File tree

34 files changed

+39
-34
lines changed

34 files changed

+39
-34
lines changed

apps/api-extractor/src/api/test/test-data/config-lookup1/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDir": "src/",
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

apps/api-extractor/src/api/test/test-data/config-lookup2/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDir": "src/",
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

apps/api-extractor/src/api/test/test-data/config-lookup3/src/test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDir": "src/",
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

apps/api-extractor/src/api/test/test-data/config-lookup3/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDir": "src/",
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-action-plugin/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-example-plugin-01/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-example-plugin-02/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-jest-reporters-test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"declaration": true,

build-tests/heft-minimal-rig-test/profiles/default/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-node-everything-test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

build-tests/heft-sass-test/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/", "temp/sass-ts/"],
6+
"rootDir": "src",
7+
"rootDirs": ["src", "temp/sass-ts"],
78

89
"forceConsistentCasingInFileNames": true,
910
"jsx": "react",

build-tests/heft-webpack-everything-test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.9/includes/tsconfig-web.json",
33
"compilerOptions": {
4-
"rootDirs": ["./src", "./temp/loc-json-ts/"],
4+
"rootDir": "src",
5+
"rootDirs": ["src", "temp/loc-json-ts"],
56
"types": ["webpack-env"]
67
}
78
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.9/includes/tsconfig-web.json",
33
"compilerOptions": {
4-
"rootDirs": ["./src", "./temp/loc-json-ts/"],
4+
"rootDir": "src",
5+
"rootDirs": ["src", "temp/loc-json-ts"],
56
"types": ["webpack-env"]
67
}
78
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.9/includes/tsconfig-web.json",
33
"compilerOptions": {
4-
"rootDirs": ["./src", "./temp/loc-json-ts/"],
4+
"rootDir": "src",
5+
"rootDirs": ["src", "temp/loc-json-ts"],
56
"types": ["webpack-env"]
67
}
78
}

rigs/heft-node-rig/profiles/default/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../../lib",
6-
"rootDirs": ["../../../../../src/"],
6+
"rootDir": "../../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

rigs/heft-web-rig/profiles/library/tsconfig-base.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../../lib",
6-
"rootDirs": ["../../../../../src/", "../../../../../temp/sass-ts/"],
6+
"rootDir": "../../../../../src",
7+
"rootDirs": ["../../../../../src", "../../../../../temp/sass-ts"],
78

89
"forceConsistentCasingInFileNames": true,
910
"jsx": "react",

stack/rush-stack-compiler-2.4/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-2.7/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-2.8/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-2.9/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.0/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.1/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.2/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.3/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.4/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.5/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.6/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.7/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.8/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

stack/rush-stack-compiler-3.9/includes/tsconfig-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "../../../../lib",
6-
"rootDirs": ["../../../../src/"],
6+
"rootDir": "../../../../src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

tutorials/heft-node-basic-tutorial/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

tutorials/heft-webpack-basic-tutorial/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

tutorials/packlets-tutorial/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"compilerOptions": {
55
"outDir": "lib",
6-
"rootDirs": ["src/"],
6+
"rootDir": "src",
77

88
"forceConsistentCasingInFileNames": true,
99
"jsx": "react",

0 commit comments

Comments
 (0)