Skip to content

Commit d5f6496

Browse files
committed
Working on getting it ready to be published.
1 parent b914cd3 commit d5f6496

File tree

6 files changed

+53
-13
lines changed

6 files changed

+53
-13
lines changed

.DS_Store

0 Bytes
Binary file not shown.

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "flynnick_bisection_method",
3+
"description": "A quick and inneficient implementation of the bisection method in TS.",
4+
"version": "1.0.0",
5+
"main": "./dist/index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/FlyN-Nick/Bisection-Method.git"
12+
},
13+
"keywords": [
14+
"bisection",
15+
"bisection method"
16+
],
17+
"author": "Nicholas Assaderaghi",
18+
"license": "MIT",
19+
"bugs": {
20+
"url": "https://github.com/FlyN-Nick/Bisection-Method/issues"
21+
},
22+
"homepage": "https://github.com/FlyN-Nick/Bisection-Method"
23+
}

src/.DS_Store

6 KB
Binary file not shown.
File renamed without changes.

index.ts renamed to src/index.ts

File renamed without changes.

tsconfig.json

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,38 @@
11
{
2-
"compilerOptions":
3-
{
4-
"name": "FlyN Nick's Bisection Method",
5-
"version": "1.0.0",
6-
"description": "A terrible implementation of the bisection method in TS.",
2+
"compilerOptions": {
73
"target": "es6",
8-
"lib": ["esnext", "dom"],
94
"module": "commonjs",
10-
"moduleResolution": "node",
11-
"strict": true,
12-
"jsx": "react",
13-
"allowJs": false,
5+
"lib": [
6+
"dom",
7+
"es6",
8+
"es2017",
9+
"esnext.asynciterable"
10+
],
1411
"sourceMap": true,
15-
"inlineSources": true,
16-
"types": ["node"],
12+
"outDir": "./dist",
13+
"moduleResolution": "node",
14+
"removeComments": true,
15+
"noImplicitAny": true,
16+
"strictNullChecks": true,
17+
"strictFunctionTypes": true,
18+
"noImplicitThis": true,
19+
"noUnusedLocals": true,
20+
"noUnusedParameters": true,
21+
"noImplicitReturns": true,
22+
"noFallthroughCasesInSwitch": true,
1723
"allowSyntheticDefaultImports": true,
24+
"esModuleInterop": true,
25+
"emitDecoratorMetadata": true,
1826
"experimentalDecorators": true,
27+
"resolveJsonModule": true,
28+
"baseUrl": ".",
1929
"declaration": true
20-
}
30+
},
31+
"exclude": [
32+
"node_modules"
33+
],
34+
"include": [
35+
"./src/**/*.tsx",
36+
"./src/**/*.ts"
37+
]
2138
}

0 commit comments

Comments
 (0)