mirror of
https://github.com/status-im/sn-api.git
synced 2026-08-31 01:31:07 +00:00
* create the user table in the db * create the user service * create the auth routes * implement passport strategy for Wallet sign-in * linting fixes * ensure consistent address value * update branch name in workflow
25 lines
461 B
JSON
25 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
}
|