diff --git a/.gitignore b/.gitignore index 454bb90..f641102 100644 --- a/.gitignore +++ b/.gitignore @@ -48,5 +48,8 @@ reports/ !package-lock.json !turbo.json !tsconfig.json +!base.json +!library.json +!react-library.json !.yarn/plugins node_modules/ diff --git a/src/ts-config-webex-int/base.json b/src/ts-config-webex-int/base.json new file mode 100644 index 0000000..bf224bb --- /dev/null +++ b/src/ts-config-webex-int/base.json @@ -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"] +} + diff --git a/src/ts-config-webex-int/library.json b/src/ts-config-webex-int/library.json new file mode 100644 index 0000000..d076c59 --- /dev/null +++ b/src/ts-config-webex-int/library.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "display": "Library", + "extends": "./base.json", + "compilerOptions": { + "lib": ["dom", "ES2015"], + "module": "ESNext", + "target": "ES6" + } +} diff --git a/src/ts-config-webex-int/react-library.json b/src/ts-config-webex-int/react-library.json new file mode 100644 index 0000000..7e0ab04 --- /dev/null +++ b/src/ts-config-webex-int/react-library.json @@ -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" + } +}