0.0.8 • Published 13 days ago

@playform/build v0.0.8

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
13 days ago

🌀 Build —

Build all your TypeScript files into JavaScript.

Installation

Add configuration and setup scripts:

npm install -D -E @playform/build

Usage

Through a command line run:

npx @playform/build 'Source/**/*.ts'

or in a package.json file:

{
	"scripts": {
		"prepublishOnly": "Build 'Source/**/*.ts'"
	}
}

ESBuild Configuration

Or with a custom ESBuild config file:

package.json

{
	"scripts": {
		"prepublishOnly": "Build 'Source/**/*.ts' --ESBuild ESBuild.ts"
	}
}

See an example of a configuration file in ESBuild.ts

TypeScript Configuration

tsconfig.json

{
	"compilerOptions": {
		"outDir": "Target"
	},
	"extends": "@playform/build/tsconfig",
	"include": ["Source"]
}
0.0.8

13 days ago

0.0.7

1 month ago

0.0.6

1 month ago

0.0.3

2 months ago

0.0.5

2 months ago

0.0.4

2 months ago

0.0.2

2 months ago

0.0.1

2 months ago