Skip to content

Commit

Permalink
added tsconfigwebex.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jenithainbaraj committed Jan 5, 2023
1 parent 27fc063 commit d3af410
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@ reports/
!package-lock.json
!turbo.json
!tsconfig.json
!base.json
!library.json
!react-library.json
!.yarn/plugins
node_modules/
21 changes: 21 additions & 0 deletions src/ts-config-webex-int/base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "node",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"strict": true
},
"exclude": ["node_modules"]
}

10 changes: 10 additions & 0 deletions src/ts-config-webex-int/library.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Library",
"extends": "./base.json",
"compilerOptions": {
"lib": ["dom", "ES2015"],
"module": "ESNext",
"target": "ES6"
}
}
15 changes: 15 additions & 0 deletions src/ts-config-webex-int/react-library.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Library",
"extends": "./base.json",
"compilerOptions": {
"lib": ["dom", "ES2015"],
"module": "ESNext",
"target": "ES6",
"moduleResolution": "node",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"jsx": "react"
}
}

0 comments on commit d3af410

Please sign in to comment.