Skip to content

Commit da1e196

Browse files
committed
fix: 3.7 config errors
1 parent c7b3351 commit da1e196

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

packages/eslint-plugin-tslint/tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"rootDir": ".",
5-
"noEmit": true
4+
"composite": false,
5+
"noEmit": true,
6+
"rootDir": "."
67
},
78
"include": ["src", "tests"],
89
"exclude": ["tests/test-project", "tests/test-tslint-rules-directory"]

packages/eslint-plugin/tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"rootDir": ".",
5-
"noEmit": true
4+
"composite": false,
5+
"noEmit": true,
6+
"rootDir": "."
67
},
78
"include": ["src", "typings", "tests", "tools"]
89
}
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"rootDir": ".",
5-
"noEmit": true
4+
"composite": false,
5+
"noEmit": true,
6+
"rootDir": "."
67
},
78
"include": ["src", "typings", "tests", "tools"]
89
}

packages/parser/tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"rootDir": ".",
5-
"noEmit": true
4+
"composite": false,
5+
"noEmit": true,
6+
"rootDir": "."
67
},
78
"include": ["src", "tests", "tools"],
89
"exclude": ["tests/fixtures"]

packages/typescript-estree/tsconfig.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
4-
"rootDir": ".",
5-
"noEmit": true
4+
"composite": false,
5+
"noEmit": true,
6+
"rootDir": "."
67
},
78
"include": ["src", "tests", "tools"],
89
"exclude": ["tests/fixtures/**/*"]

0 commit comments

Comments
 (0)