cocos-creator-multiplayer/examples/mongodb-crud/backend/tsconfig.json

18 lines
319 B
JSON
Raw Permalink Normal View History

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