Skip to content

Commit 7e5b44c

Browse files
Deyaaeldeen AlmahallawiCopilot
andcommitted
chore(migration): config folder migration for arm-* packages (Group 2)
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3de1abe commit 7e5b44c

420 files changed

Lines changed: 1740 additions & 1655 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": "../../../../tsconfig.json",
3+
"compilerOptions": {
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
6+
"rootDir": "..",
7+
"paths": {}
8+
},
9+
"include": ["../src/**/*.ts", "../src/**/*.mts", "../test/**/*.ts", "../test/**/*.mts"]
10+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/snippets.json",
3+
"compilerOptions": {
4+
"paths": {}
5+
},
6+
"include": ["../test/snippets.spec.ts"]
7+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/src.browser.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/src.cjs.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/src.esm.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/src.react-native.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/test.browser.json"
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "../../../../eng/tsconfigs/test.node.json"
3+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import azsdkEslint from "@azure/eslint-plugin-azure-sdk";
2+
3+
export default [
4+
...azsdkEslint.configs.recommended,
5+
{
6+
languageOptions: {
7+
parserOptions: {
8+
projectService: false,
9+
project: "./config/tsconfig.lint.json",
10+
},
11+
},
12+
},
13+
];
Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
{
22
"references": [
3-
{
4-
"path": "./tsconfig.src.json"
5-
},
6-
{
7-
"path": "./tsconfig.samples.json"
8-
},
9-
{
10-
"path": "./tsconfig.test.json"
11-
},
12-
{
13-
"path": "./tsconfig.snippets.json"
14-
}
3+
{ "path": "./config/tsconfig.src.esm.json" },
4+
{ "path": "./config/tsconfig.src.browser.json" },
5+
{ "path": "./config/tsconfig.src.react-native.json" },
6+
{ "path": "./config/tsconfig.src.cjs.json" },
7+
{ "path": "./config/tsconfig.test.node.json" },
8+
{ "path": "./config/tsconfig.test.browser.json" },
9+
{ "path": "./config/tsconfig.snippets.json" }
1510
],
1611
"files": []
1712
}

0 commit comments

Comments
 (0)