aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/design-system/packages/acme-tsconfig
diff options
context:
space:
mode:
Diffstat (limited to 'examples/design-system/packages/acme-tsconfig')
-rw-r--r--examples/design-system/packages/acme-tsconfig/base.json20
-rw-r--r--examples/design-system/packages/acme-tsconfig/node16.json10
-rw-r--r--examples/design-system/packages/acme-tsconfig/package.json9
-rw-r--r--examples/design-system/packages/acme-tsconfig/react-library.json11
4 files changed, 50 insertions, 0 deletions
diff --git a/examples/design-system/packages/acme-tsconfig/base.json b/examples/design-system/packages/acme-tsconfig/base.json
new file mode 100644
index 0000000..d72a9f3
--- /dev/null
+++ b/examples/design-system/packages/acme-tsconfig/base.json
@@ -0,0 +1,20 @@
+{
+ "$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/examples/design-system/packages/acme-tsconfig/node16.json b/examples/design-system/packages/acme-tsconfig/node16.json
new file mode 100644
index 0000000..d88cc58
--- /dev/null
+++ b/examples/design-system/packages/acme-tsconfig/node16.json
@@ -0,0 +1,10 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "Node 16",
+ "extends": "./base.json",
+ "compilerOptions": {
+ "lib": ["ES2020"],
+ "module": "commonjs",
+ "target": "ES2020"
+ }
+}
diff --git a/examples/design-system/packages/acme-tsconfig/package.json b/examples/design-system/packages/acme-tsconfig/package.json
new file mode 100644
index 0000000..fe468e0
--- /dev/null
+++ b/examples/design-system/packages/acme-tsconfig/package.json
@@ -0,0 +1,9 @@
+{
+ "name": "@acme/tsconfig",
+ "version": "0.0.0",
+ "private": true,
+ "license": "MIT",
+ "publishConfig": {
+ "access": "public"
+ }
+}
diff --git a/examples/design-system/packages/acme-tsconfig/react-library.json b/examples/design-system/packages/acme-tsconfig/react-library.json
new file mode 100644
index 0000000..fc1e02a
--- /dev/null
+++ b/examples/design-system/packages/acme-tsconfig/react-library.json
@@ -0,0 +1,11 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "display": "React Library",
+ "extends": "./base.json",
+ "compilerOptions": {
+ "jsx": "react-jsx",
+ "lib": ["dom", "ES2015"],
+ "module": "ESNext",
+ "target": "es6"
+ }
+}