Files
jellyseerr/server/tsconfig.json
sct 5343f35e5b feat(api): initial implementation of the auth system (#30)
Adds the auth system but does not add all required features. They will be handled in other tickets
2020-08-28 09:34:15 +09:00

14 lines
315 B
JSON

{
"extends": "../tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"outDir": "../dist",
"noEmit": false,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"typeRoots": ["types"]
},
"include": ["**/*.ts", "**/*.tsx"]
}