Skip to content

Commit a2ae842

Browse files
committed
Add a test project for TypeScript 3.x
1 parent cb20b8b commit a2ae842

File tree

9 files changed

+415
-0
lines changed

9 files changed

+415
-0
lines changed

build-tests/install-test-workspace/workspace/common/pnpm-lock.yaml

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
packages:
22
- typescript-newest-test
3+
- typescript-v3-test
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// This is a workaround for https://github.com/eslint/eslint/issues/3458
2+
require('@rushstack/eslint-config/patch/modern-module-resolution');
3+
4+
module.exports = {
5+
extends: ['@rushstack/eslint-config/profile/node'],
6+
parserOptions: { tsconfigRootDir: __dirname }
7+
};
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/heft/heft.schema.json",
3+
4+
"eventActions": [
5+
{
6+
"actionKind": "deleteGlobs",
7+
"heftEvent": "clean",
8+
"actionId": "defaultClean",
9+
"globsToDelete": ["dist", "lib", "temp"]
10+
}
11+
]
12+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"projectOutputFolderNames": ["lib", "dist"]
3+
}

0 commit comments

Comments
 (0)