1
0
mirror of synced 2025-11-08 12:57:47 +00:00

feat(browser): add browser build, tests, and sample sha256 library method

This commit is contained in:
Jason Dreyzehner
2017-02-23 03:06:55 -05:00
parent a56491f866
commit 01f67d103a
18 changed files with 901 additions and 65 deletions

View File

@@ -1,5 +1,5 @@
{
"extends": "./config/tsconfig.flexible",
"extends": "./config/tsconfig.flexible", // also available: "./config/tsconfig.strict"
"compilerOptions": {
"target": "es6",
"outDir": "build/main",
@@ -17,7 +17,11 @@
],
"types" : [
"node"
]
],
"baseUrl": ".", // required for "paths"
"paths": {
"typescript-starter": ["src/index.ts"] // write tests without relative paths
}
},
"include": [
"src/**/*.ts"