We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe44252 commit 3285d04Copy full SHA for 3285d04
packages/adapter-supabase/tsconfig.json
@@ -1,8 +1,25 @@
1
{
2
- "extends": "@next-auth/tsconfig/tsconfig.adapters.json",
+ "extends": "@next-auth/tsconfig/tsconfig.base.json",
3
"compilerOptions": {
4
+ "allowJs": true,
5
+ "baseUrl": ".",
6
+ "isolatedModules": true,
7
+ "target": "ES2020",
8
+ "module": "ESNext",
9
+ "moduleResolution": "node",
10
+ "outDir": ".",
11
"rootDir": "src",
- "outDir": "dist"
12
+ "skipDefaultLibCheck": true,
13
+ "strictNullChecks": true,
14
+ "stripInternal": true,
15
+ "declarationMap": true,
16
+ "declaration": true
17
},
- "exclude": ["tests", "dist", "jest.config.js"]
-}
18
+ "include": [
19
+ "src/**/*"
20
+ ],
21
+ "exclude": [
22
+ "*.js",
23
+ "*.d.ts",
24
+ ]
25
+}
0 commit comments