Skip to content

Commit 3285d04

Browse files
committed
fix(build): use correct tsconfig
1 parent fe44252 commit 3285d04

File tree

1 file changed

+21
-4
lines changed

1 file changed

+21
-4
lines changed
Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
{
2-
"extends": "@next-auth/tsconfig/tsconfig.adapters.json",
2+
"extends": "@next-auth/tsconfig/tsconfig.base.json",
33
"compilerOptions": {
4+
"allowJs": true,
5+
"baseUrl": ".",
6+
"isolatedModules": true,
7+
"target": "ES2020",
8+
"module": "ESNext",
9+
"moduleResolution": "node",
10+
"outDir": ".",
411
"rootDir": "src",
5-
"outDir": "dist"
12+
"skipDefaultLibCheck": true,
13+
"strictNullChecks": true,
14+
"stripInternal": true,
15+
"declarationMap": true,
16+
"declaration": true
617
},
7-
"exclude": ["tests", "dist", "jest.config.js"]
8-
}
18+
"include": [
19+
"src/**/*"
20+
],
21+
"exclude": [
22+
"*.js",
23+
"*.d.ts",
24+
]
25+
}

0 commit comments

Comments
 (0)