mirror of
https://github.com/Turfjs/turf.git
synced 2026-01-25 16:07:00 +00:00
* Standardize on a single tsconfig * Standardize tsconfig output - Move output of es5 code into dist/js (leaves room for dist/es for modules) - Update references from ./index over to ./dist/js/index.js - Seems like this will publish types for several new packages - A few packages needed to be slightly modified to publish correctly to dist - Small fixes to @turf/turf due to the file path changes - Note: not currently using types.ts for testing (next commit) * Re-enable testing using types.ts in packages where that exists * Run packages/turf tests after everything else has built * Enforce tsc before bench * nearest-neighbor-analysis test updates from rowanwins
8 lines
123 B
JSON
8 lines
123 B
JSON
{
|
|
"extends": "../../tsconfig.shared.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist/js"
|
|
},
|
|
"files": ["index.ts"]
|
|
}
|