Files
MinecraftLegacy/tsconfig.json
2026-04-05 00:51:26 +01:00

22 lines
375 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowJs": true,
// "checkJs": true,
"noEmit": true,
"outDir": "dist",
"paths": {
"@/*": ["./src/*"]
},
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}