aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-02-21 16:11:35 -0700
committerDhravya <[email protected]>2024-02-21 16:11:35 -0700
commitcdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526 (patch)
treee0234f7fff63b312f18c945bed37a430d1e68755 /packages
downloadsupermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.tar.xz
supermemory-cdceb1bc87dc2d5ef42a7f172ea5dc2263c5c526.zip
initialised monorepo with auth and extension communication
Diffstat (limited to 'packages')
-rw-r--r--packages/tsconfig/base.json44
-rw-r--r--packages/tsconfig/package.json3
2 files changed, 47 insertions, 0 deletions
diff --git a/packages/tsconfig/base.json b/packages/tsconfig/base.json
new file mode 100644
index 00000000..16cf46e4
--- /dev/null
+++ b/packages/tsconfig/base.json
@@ -0,0 +1,44 @@
+{
+ "compilerOptions": {
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "target": "es2022",
+ "allowJs": true,
+ "resolveJsonModule": true,
+ "moduleDetection": "force",
+ "isolatedModules": true,
+ "strict": true,
+ "noUncheckedIndexedAccess": true,
+ "checkJs": true,
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "ES2022"
+ ],
+ "noEmit": true,
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "jsx": "preserve",
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "incremental": true,
+ "baseUrl": "."
+ },
+ "include": [
+ "../.eslintrc.cjs",
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ "**/*.cjs",
+ "**/*.js",
+ ".next/types/**/*.ts",
+ "../tailwind.config.ts",
+ "../prettier.config.js"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
+} \ No newline at end of file
diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json
new file mode 100644
index 00000000..3c8eb887
--- /dev/null
+++ b/packages/tsconfig/package.json
@@ -0,0 +1,3 @@
+{
+ "name": "tsconfig"
+} \ No newline at end of file