aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-tailwind/packages/tsconfig
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-tailwind/packages/tsconfig')
-rw-r--r--examples/with-tailwind/packages/tsconfig/base.json20
-rw-r--r--examples/with-tailwind/packages/tsconfig/nextjs.json22
-rw-r--r--examples/with-tailwind/packages/tsconfig/package.json9
-rw-r--r--examples/with-tailwind/packages/tsconfig/react-library.json11
4 files changed, 0 insertions, 62 deletions
diff --git a/examples/with-tailwind/packages/tsconfig/base.json b/examples/with-tailwind/packages/tsconfig/base.json
deleted file mode 100644
index d72a9f3..0000000
--- a/examples/with-tailwind/packages/tsconfig/base.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "$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/with-tailwind/packages/tsconfig/nextjs.json b/examples/with-tailwind/packages/tsconfig/nextjs.json
deleted file mode 100644
index 91cd404..0000000
--- a/examples/with-tailwind/packages/tsconfig/nextjs.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/tsconfig",
- "display": "Next.js",
- "extends": "./base.json",
- "compilerOptions": {
- "target": "es5",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "strict": false,
- "forceConsistentCasingInFileNames": true,
- "noEmit": true,
- "incremental": true,
- "esModuleInterop": true,
- "module": "esnext",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve"
- },
- "include": ["src", "next-env.d.ts"],
- "exclude": ["node_modules"]
-}
diff --git a/examples/with-tailwind/packages/tsconfig/package.json b/examples/with-tailwind/packages/tsconfig/package.json
deleted file mode 100644
index 6efb83e..0000000
--- a/examples/with-tailwind/packages/tsconfig/package.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "name": "tsconfig",
- "version": "0.0.0",
- "private": true,
- "license": "MIT",
- "publishConfig": {
- "access": "public"
- }
-}
diff --git a/examples/with-tailwind/packages/tsconfig/react-library.json b/examples/with-tailwind/packages/tsconfig/react-library.json
deleted file mode 100644
index 6d6a7fe..0000000
--- a/examples/with-tailwind/packages/tsconfig/react-library.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/tsconfig",
- "display": "React Library",
- "extends": "./base.json",
- "compilerOptions": {
- "lib": ["ES2015"],
- "module": "ESNext",
- "target": "ES6",
- "jsx": "react-jsx"
- }
-}