cocos-creator-multiplayer/examples/user-authentication/backend/tsconfig.json

18 lines
319 B
JSON
Raw Normal View History

2021-06-14 12:57:26 +00:00
{
"compilerOptions": {
"lib": [
"es2018"
],
"module": "commonjs",
"target": "es2018",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node"
},
"include": [
"src"
]
}