Skip to content

Commit 78ea4d2

Browse files
committed
Adding test projects for RSC.
1 parent c41e83b commit 78ea4d2

33 files changed

Lines changed: 291 additions & 0 deletions

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore everything by default
2+
**
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const build = require('@microsoft/node-library-build');
4+
5+
build.initialize(require('gulp'));
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "rush-stack-compiler-2.4-library-test",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "lib/index.js",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"build": "gulp test --clean"
10+
},
11+
"dependencies": {
12+
"@types/node": "8.5.8"
13+
},
14+
"devDependencies": {
15+
"@microsoft/node-library-build": "6.0.11",
16+
"@microsoft/rush-stack-compiler-2.4": "0.0.0",
17+
"gulp": "~3.9.1"
18+
}
19+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+
// See LICENSE in the project root for license information.
3+
4+
export class TestClass {
5+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler-2.4/includes/tsconfig-node.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@microsoft/rush-stack-compiler-2.4/includes/tslint.json"
3+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore everything by default
2+
**
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const build = require('@microsoft/node-library-build');
4+
5+
build.initialize(require('gulp'));
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "rush-stack-compiler-2.7-library-test",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "lib/index.js",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"build": "gulp test --clean"
10+
},
11+
"dependencies": {
12+
"@types/node": "8.5.8"
13+
},
14+
"devDependencies": {
15+
"@microsoft/node-library-build": "6.0.11",
16+
"@microsoft/rush-stack-compiler-2.7": "0.0.0",
17+
"gulp": "~3.9.1"
18+
}
19+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+
// See LICENSE in the project root for license information.
3+
4+
export class TestClass {
5+
}

0 commit comments

Comments
 (0)