File tree 3 files changed +18
-3
lines changed
3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ .vercel
Original file line number Diff line number Diff line change 13
13
"url" : " git://github.com/pboyer/nomial.git"
14
14
},
15
15
"scripts" : {
16
- "test" : " ts-node test/index.ts" ,
16
+ "test" : " ts-node --project tsconfig.test.json test/index.ts" ,
17
17
"build" : " tsc --emitDeclarationOnly && rollup -c && cp dist/nomial.js examples/nomial.js" ,
18
18
"publish" : " yarn build" ,
19
- "benchmark" : " ts-node benchmark/index.ts"
19
+ "benchmark" : " ts-node --project tsconfig.test.json benchmark/index.ts"
20
20
},
21
21
"keywords" : [
22
22
" polynomial" ,
38
38
"tslib" : " ^2.4.0" ,
39
39
"typescript" : " ^4.7.4"
40
40
}
41
- }
41
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "module" : " CommonJS" ,
4
+ "target" : " es2015" ,
5
+ "declaration" : true ,
6
+ "outDir" : " ./dist"
7
+ },
8
+ "include" : [
9
+ " src/**/*"
10
+ ],
11
+ "types" : [
12
+ " node"
13
+ ]
14
+ }
You can’t perform that action at this time.
0 commit comments