* 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>
45 lines
847 B
JSON
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"
|
|
]
|
|
} |