1
Fork 0
solar-conflux/typescript/multiplayer-backend/tsconfig.json
Matei Adriel 1544ca69e2
typescript(multiplayer-backend): email validation tests
Signed-off-by: prescientmoon <git@moonythm.dev>
2019-04-15 18:59:30 +03:00

31 lines
635 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"types/*"
]
},
"module": "commonjs",
"removeComments": true,
"lib": [
"es2015",
"es2017",
"dom"
],
"noImplicitAny": true,
"alwaysStrict": true,
"moduleResolution": "Node",
"experimentalDecorators": true,
"downlevelIteration": true,
"target": "ESNext",
"resolveJsonModule": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
"dist"
]
}