1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 07:44:48 +00:00
This commit is contained in:
zumbiepig 2024-09-06 11:48:45 -07:00
parent ac69ba14e2
commit e4d4e66fdb
No known key found for this signature in database
GPG Key ID: 17C891BE28B953DE
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,6 @@
{ {
"private": true, "private": true,
"name": "minexlauncher", "name": "minexlauncher",
"module": "index.ts",
"type": "module", "type": "module",
"scripts": { "scripts": {
"start": "NODE_ENV=production bun run ./index.ts", "start": "NODE_ENV=production bun run ./index.ts",

View File

@ -1,4 +1,9 @@
{ {
"extends": ["@tsconfig/bun", "@tsconfig/strictest"], "extends": ["@tsconfig/bun", "@tsconfig/strictest"],
"exclude": ["node_modules", "public"] "exclude": ["node_modules", "public"],
"compilerOptions": {
"outDir": "dist",
"noEmit": false,
"allowImportingTsExtensions": false
}
} }