@apollo-deploy/tsconfig 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/base.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Apollo Deploy Base Config",
4
+ "compilerOptions": {
5
+ "target": "ES2023",
6
+ "lib": ["ES2023"],
7
+ "module": "NodeNext",
8
+ "moduleResolution": "NodeNext",
9
+ "moduleDetection": "force",
10
+ "noEmit": true,
11
+ "declaration": true,
12
+ "declarationMap": true,
13
+ "sourceMap": true,
14
+ "inlineSources": true,
15
+ "removeComments": false,
16
+ "newLine": "lf",
17
+ "esModuleInterop": true,
18
+ "forceConsistentCasingInFileNames": true,
19
+ "isolatedModules": true,
20
+ "verbatimModuleSyntax": true,
21
+ "resolveJsonModule": true,
22
+ "allowSyntheticDefaultImports": true,
23
+ "strict": true,
24
+ "noImplicitAny": true,
25
+ "strictNullChecks": true,
26
+ "strictFunctionTypes": true,
27
+ "strictBindCallApply": true,
28
+ "strictPropertyInitialization": true,
29
+ "strictBuiltinIteratorReturn": true,
30
+ "noImplicitThis": true,
31
+ "useUnknownInCatchVariables": true,
32
+ "alwaysStrict": true,
33
+ "noUnusedLocals": true,
34
+ "noUnusedParameters": true,
35
+ "exactOptionalPropertyTypes": true,
36
+ "noImplicitReturns": true,
37
+ "noFallthroughCasesInSwitch": true,
38
+ "noUncheckedIndexedAccess": true,
39
+ "noImplicitOverride": true,
40
+ "noPropertyAccessFromIndexSignature": false,
41
+ "allowUnusedLabels": false,
42
+ "allowUnreachableCode": false,
43
+ "skipLibCheck": true,
44
+ "incremental": true,
45
+ "disableSourceOfProjectReferenceRedirect": true,
46
+ "pretty": true
47
+ },
48
+ "exclude": ["node_modules", "dist", "build", "coverage", ".turbo", ".next"]
49
+ }
package/bun-app.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Apollo Deploy Bun Application Config",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "types": ["bun-types"],
7
+ "allowImportingTsExtensions": true,
8
+ "noEmit": true,
9
+ "module": "Preserve",
10
+ "moduleResolution": "Bundler",
11
+ "verbatimModuleSyntax": false
12
+ }
13
+ }
package/bun-lib.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Apollo Deploy Bun Library Config",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "types": ["bun-types"],
7
+ "composite": true,
8
+ "declaration": true,
9
+ "declarationMap": true,
10
+ "emitDeclarationOnly": true,
11
+ "noEmit": false,
12
+ "isolatedModules": true
13
+ }
14
+ }
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@apollo-deploy/tsconfig",
3
+ "version": "1.0.0",
4
+ "description": "Shared TypeScript configurations for Apollo Deploy monorepo",
5
+ "license": "UNLICENSED",
6
+ "files": [
7
+ "base.json",
8
+ "bun-app.json",
9
+ "bun-lib.json",
10
+ "react-app.json"
11
+ ],
12
+ "exports": {
13
+ "./base.json": "./base.json",
14
+ "./bun-app.json": "./bun-app.json",
15
+ "./bun-lib.json": "./bun-lib.json",
16
+ "./react-app.json": "./react-app.json"
17
+ },
18
+ "publishConfig": {
19
+ "access": "restricted"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/Apollo-Deploy/apollo-deploy-api.git",
24
+ "directory": "packages/tsconfig"
25
+ }
26
+ }
package/react-app.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Apollo Deploy React Application Config",
4
+ "extends": "./base.json",
5
+ "compilerOptions": {
6
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
7
+ "jsx": "react-jsx",
8
+ "types": ["bun-types"],
9
+ "module": "Preserve",
10
+ "moduleResolution": "Bundler",
11
+ "allowImportingTsExtensions": true,
12
+ "noEmit": true,
13
+ "verbatimModuleSyntax": false
14
+ }
15
+ }