MCServer/tsconfig.json
2023-12-10 21:40:40 +03:00

17 lines
300 B
JSON

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