MCServer/tsconfig.json

17 lines
300 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": [
"esnext",
"es6"
],
"target": "esnext",
"module": "commonjs",
"outDir": "./build",
"rootDir": "./src",
"esModuleInterop": true,
"sourceMap": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
}