Skip to content

Commit

Permalink
Add base tsconfig file (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweininger authored Nov 11, 2022
1 parent 93597ce commit 47020b6
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 52 deletions.
17 changes: 3 additions & 14 deletions appservice/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"declaration": true,
"rootDir": ".",
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"incremental": true
"outDir": "out",
"rootDir": "."
},
"exclude": [
"node_modules",
Expand Down
15 changes: 2 additions & 13 deletions azure/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": ".",
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"incremental": true
"rootDir": "."
},
"exclude": [
"node_modules",
Expand Down
13 changes: 1 addition & 12 deletions dev/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,11 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": ".",
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"strict": true,
"alwaysStrict": true,
"skipLibCheck": true, // https://github.com/Azure/ms-rest-js/issues/367,
"incremental": true
},
"exclude": [
"node_modules",
Expand Down
20 changes: 20 additions & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
],
"sourceMap": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"incremental": true,
},
"exclude": [
"node_modules",
"lib",
],
}
15 changes: 2 additions & 13 deletions utils/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": ".",
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"incremental": true
"rootDir": "."
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit 47020b6

Please sign in to comment.