Skip to content

Commit 5022522

Browse files
committed
use ts-node loader
1 parent 275e395 commit 5022522

9 files changed

+430
-44
lines changed

.ts-node.env

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Node.js can run TypeScript files with
2+
#
3+
# node --test --env-file .ts-node.env ./path/to/file.ts
4+
#
5+
NODE_OPTIONS="--no-warnings=ExperimentalWarning --loader ts-node/esm"

DEVELOP.md

-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@ npm install prettier typescript @types/node --no-save
1111
## Documentation website
1212

1313
Just open [index.html](index.html) in your browser.
14-

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
> means completeness and balancing, from the Arabic word الجبر
44
55
See documentation here: https://fibo.github.io/algebra
6-

examples/set.html

+26-26
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
@@ -15,32 +15,32 @@ <h1>algebra sets</h1>
1515

1616
<!-- Code from src/set_test.ts -->
1717
<script type="text/typescript" id="set-script">
18-
import { AlgebraSet } from "algebra";
18+
import { AlgebraSet } from "algebra";
1919

20-
const Boole: AlgebraSet<boolean> = {
21-
element(a) {
22-
if (typeof a !== "boolean") throw new TypeError();
23-
return {
24-
equal(b) {
25-
return a === b;
26-
},
27-
valueOf() {
28-
return a;
29-
},
30-
toString() {
31-
return a.toString();
32-
},
33-
};
34-
},
35-
includes(arg) {
36-
return typeof arg === "boolean";
37-
},
38-
equal(a, b) {
39-
return (
40-
typeof a === "boolean" && typeof b === "boolean" && a === b
41-
);
42-
},
43-
};
20+
const Boole: AlgebraSet<boolean> = {
21+
element(a) {
22+
if (typeof a !== "boolean") throw new TypeError();
23+
return {
24+
equal(b) {
25+
return a === b;
26+
},
27+
valueOf() {
28+
return a;
29+
},
30+
toString() {
31+
return a.toString();
32+
},
33+
};
34+
},
35+
includes(arg) {
36+
return typeof arg === "boolean";
37+
},
38+
equal(a, b) {
39+
return (
40+
typeof a === "boolean" && typeof b === "boolean" && a === b
41+
);
42+
},
43+
};
4444
</script>
4545
</main>
4646

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />

0 commit comments

Comments
 (0)