hytale-says/tsconfig.json
2026-01-08 21:52:19 +06:00

19 lines
426 B
JSON

{
"compilerOptions": {
"target": "es2024",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"rootDir": "./src",
"module": "nodenext",
"moduleResolution": "nodenext",
"paths": {
"@/*": ["./src/*"]
},
"strict": true,
"outDir": "./dist",
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
}
}