core setup fixes

This commit is contained in:
Oleksandr Honcharov 2024-06-10 22:59:29 +03:00
parent c163ef6585
commit 512b37cdbd
12 changed files with 5198 additions and 7158 deletions

View File

@ -1,12 +0,0 @@
{
"compilationOptions": {
"followSymlinks": true,
"preferredConfigPath": "../tsconfig.json"
},
"entries": [
{
"filePath": "./src/index.ts",
"outFile": "./dist/index.d.ts"
}
]
}

View File

@ -2,12 +2,12 @@
"name": "rage-fw-client", "name": "rage-fw-client",
"version": "0.0.10-alpha.0", "version": "0.0.10-alpha.0",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [ "files": [
"dist/**/*" "dist/**/*"
], ],
"scripts": { "scripts": {
"build": "tsup && pnpm types", "build": "tsup"
"types": "dts-bundle-generator --config dts.config.json"
}, },
"dependencies": { "dependencies": {
"@ragempcommunity/types-client": "^2.1.8", "@ragempcommunity/types-client": "^2.1.8",

View File

@ -5,7 +5,7 @@
"node_modules" "node_modules"
], ],
"compilerOptions": { "compilerOptions": {
"incremental": true, "incremental": false,
"composite": false, "composite": false,
"target": "ES2022", "target": "ES2022",
"experimentalDecorators": true, "experimentalDecorators": true,
@ -21,9 +21,6 @@
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true
"typeRoots": [
"@ragempcommunity/types-client"
]
} }
} }

View File

@ -5,6 +5,7 @@ export default defineConfig({
outDir: './dist', outDir: './dist',
format: ['cjs'], format: ['cjs'],
noExternal: ['rage-rpc'], noExternal: ['rage-rpc'],
dts: true,
splitting: false, splitting: false,
sourcemap: false, sourcemap: false,
clean: true, clean: true,

View File

@ -1,13 +1,13 @@
{ {
"private": true, "private": true,
"scripts": { "scripts": {
"publish": "lerna publish --force-publish" "publish": "pnpm build && lerna publish --force-publish",
"build": "lerna run build"
}, },
"dependencies": { "dependencies": {
"@ragempcommunity/types-cef": "^2.1.8", "@ragempcommunity/types-cef": "^2.1.8",
"@ragempcommunity/types-client": "^2.1.8", "@ragempcommunity/types-client": "^2.1.8",
"@ragempcommunity/types-server": "^2.1.8", "@ragempcommunity/types-server": "^2.1.8",
"dts-bundle-generator": "^9.5.1",
"tsup": "^8.1.0", "tsup": "^8.1.0",
"lerna": "^8.1.3", "lerna": "^8.1.3",
"prettier": "^3.3.1", "prettier": "^3.3.1",

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +0,0 @@
import { build } from 'esbuild'
build({
entryPoints: ['./src/index.ts'],
bundle: true,
format: 'cjs',
platform: 'node',
target: 'node10.4',
outdir: './dist',
}).then(r => console.log('Successfully build.'))

View File

@ -1,12 +0,0 @@
{
"compilationOptions": {
"followSymlinks": true,
"preferredConfigPath": "../tsconfig.json"
},
"entries": [
{
"filePath": "./src/index.ts",
"outFile": "./dist/index.d.ts"
}
]
}

View File

@ -7,8 +7,7 @@
"dist/**/*" "dist/**/*"
], ],
"scripts": { "scripts": {
"build": "tsup && pnpm types", "build": "tsup"
"types": "dts-bundle-generator --config dts.config.json"
}, },
"dependencies": { "dependencies": {
"@ragempcommunity/types-server": "^2.1.8", "@ragempcommunity/types-server": "^2.1.8",

View File

@ -1,4 +1,4 @@
/// <reference types="@ragempcommunity/types-server" /> import '@ragempcommunity/types-server'
import type { import type {
RageFW_ICustomServerEvent, RageFW_ICustomServerEvent,

View File

@ -5,7 +5,7 @@
"node_modules" "node_modules"
], ],
"compilerOptions": { "compilerOptions": {
"incremental": true, "incremental": false,
"composite": false, "composite": false,
"target": "ES2022", "target": "ES2022",
"experimentalDecorators": true, "experimentalDecorators": true,
@ -13,7 +13,7 @@
"moduleDetection": "auto", "moduleDetection": "auto",
"module": "CommonJS", "module": "CommonJS",
"resolveJsonModule": true, "resolveJsonModule": true,
"declaration": false, "declaration": true,
"declarationMap": false, "declarationMap": false,
"sourceMap": false, "sourceMap": false,
"downlevelIteration": false, "downlevelIteration": false,
@ -21,9 +21,6 @@
"esModuleInterop": true, "esModuleInterop": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true
"typeRoots": [
"@ragempcommunity/types-server"
]
} }
} }

View File

@ -5,6 +5,7 @@ export default defineConfig({
outDir: './dist', outDir: './dist',
format: ['cjs'], format: ['cjs'],
noExternal: ['rage-rpc'], noExternal: ['rage-rpc'],
dts: true,
splitting: false, splitting: false,
sourcemap: false, sourcemap: false,
clean: true, clean: true,