Files
core/apps/core/tsconfig.json
Innei b9fc2d5560 refactor(oauth): to better auth (#2239)
* init

Signed-off-by: Innei <tukon479@gmail.com>

* complied

Signed-off-by: Innei <tukon479@gmail.com>

* fix: remove authjs

Signed-off-by: Innei <tukon479@gmail.com>

* feat: get providers

Signed-off-by: Innei <tukon479@gmail.com>

* fix: test

Signed-off-by: Innei <tukon479@gmail.com>

---------

Signed-off-by: Innei <tukon479@gmail.com>
2024-11-26 17:02:31 +08:00

45 lines
847 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2020",
"lib": [
"ES2021",
"es2020",
"DOM",
"DOM.Iterable"
],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": ".",
"module": "CommonJS",
"paths": {
"~": [
"./src"
],
"~/*": [
"./src/*"
]
},
"resolveJsonModule": true,
"allowJs": true,
"strictNullChecks": true,
"noImplicitAny": false,
"declaration": false,
"disableSizeLimit": true,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": [
"src/**/*",
"*.d.ts"
],
"exclude": [
"dist",
"tmp",
"assets/types/type.declare.ts"
]
}