add build script
This commit is contained in:
parent
531aab43b1
commit
285ef14a68
@ -7,7 +7,8 @@
|
||||
"author": "dholms <dtholmgren@gmail.com>",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"start": "ts-node src/index.ts"
|
||||
"start": "ts-node src/index.ts",
|
||||
"build": "tsc"
|
||||
},
|
||||
"dependencies": {
|
||||
"@atproto/did-resolver": "^0.1.0",
|
||||
|
21
tsconfig.json
Normal file
21
tsconfig.json
Normal file
@ -0,0 +1,21 @@
|
||||
|
||||
{
|
||||
"compilerOptions": {
|
||||
"lib": [
|
||||
"ESNext",
|
||||
],
|
||||
"outDir": "dist",
|
||||
"module": "CommonJS",
|
||||
"target": "ES6",
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node",
|
||||
"alwaysStrict": true,
|
||||
"allowUnreachableCode": false,
|
||||
"strictNullChecks": true,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": ["./src/**/*.ts"],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user