mirror of
https://github.com/MinecraftConsole/MinecraftLegacy.git
synced 2026-07-16 03:00:49 +00:00
24 lines
425 B
JSON
24 lines
425 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
|
|
"allowJs": true,
|
|
// "checkJs": true,
|
|
"noEmit": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
} |