1
Fork 0
solar-conflux/typescript/multiplayer-backend/tsconfig.json
Matei Adriel 7f3b756378
typescript(multiplayer-backend): initial commit
Signed-off-by: prescientmoon <git@moonythm.dev>
2019-05-19 21:37:39 +03:00

33 lines
684 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,
"jsx": "preserve"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"dist",
"old_client"
]
}