1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00

create firefox send and tsdx example

This commit is contained in:
Nebel 2020-07-21 00:30:11 +09:00
parent b63f32dc8e
commit 4093180b5b
6 changed files with 5961 additions and 0 deletions

View file

@ -0,0 +1,12 @@
version: "3"
services:
web:
image: mozilla/send
links:
- redis
ports:
- "1443:1443"
environment:
- REDIS_HOST=redis
redis:
image: redis:alpine

2
tsdx/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/node_modules/
/dist/

13
tsdx/package.json Normal file
View file

@ -0,0 +1,13 @@
{
"name": "tsdx",
"version": "1.0.0",
"main": "dist/index.js",
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"devDependencies": {
"tsdx": "^0.13.2"
},
"scripts": {
"build": "tsdx build"
}
}

1
tsdx/src/index.ts Normal file
View file

@ -0,0 +1 @@
export default "hello";

10
tsdx/tsconfig.json Normal file
View file

@ -0,0 +1,10 @@
{
"compilerOptions": {
"noEmit": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
}
}

5923
tsdx/yarn.lock Normal file

File diff suppressed because it is too large Load diff