提交 7d2dea4e 编写于 作者: M Matt Bierner 提交者: GitHub

Add "Include" to extension TSConfig Files (#25860)

**Bug**
Most VSCode extensions currently specify `"exclude"` in their `tsconfig.json` but not `"include"`. This may result in extra files being included in each project

**Fix**
Add  `"include": ["src/**/*"]` to all extension tsconfig files
上级 9d5987e8
......@@ -8,7 +8,7 @@
],
"strictNullChecks": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
......@@ -7,7 +7,7 @@
"es5", "es2015.promise"
]
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -7,7 +7,7 @@
"es5"
]
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -7,7 +7,7 @@
"module": "commonjs",
"outDir": "./out"
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -9,7 +9,7 @@
"strictNullChecks": true,
"experimentalDecorators": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -12,8 +12,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"out"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -12,8 +12,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"out"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -7,7 +7,7 @@
"es2015"
]
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -9,7 +9,7 @@
"es5", "es2015.promise"
]
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -14,7 +14,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -7,7 +7,7 @@
"module": "commonjs",
"outDir": "./out"
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -7,7 +7,7 @@
"module": "commonjs",
"outDir": "./out"
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -8,7 +8,7 @@
],
"sourceMap": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -13,10 +13,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"server",
"out",
"test/colorize-fixtures"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -9,7 +9,7 @@
"sourceMap": true,
"strictNullChecks": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
......@@ -8,7 +8,7 @@
],
"sourceMap": true
},
"exclude": [
"node_modules"
"include": [
"src/**/*"
]
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册