mirror of
https://github.com/kou029w/_.git
synced 2025-01-30 22:08:02 +00:00
create firefox send and tsdx example
This commit is contained in:
parent
b63f32dc8e
commit
4093180b5b
6 changed files with 5961 additions and 0 deletions
12
firefox-send/docker-compose.yml
Normal file
12
firefox-send/docker-compose.yml
Normal 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
2
tsdx/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/node_modules/
|
||||||
|
/dist/
|
13
tsdx/package.json
Normal file
13
tsdx/package.json
Normal 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
1
tsdx/src/index.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export default "hello";
|
10
tsdx/tsconfig.json
Normal file
10
tsdx/tsconfig.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"noEmit": true,
|
||||||
|
"strict": true,
|
||||||
|
"noUnusedLocals": true,
|
||||||
|
"noUnusedParameters": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"noFallthroughCasesInSwitch": true
|
||||||
|
}
|
||||||
|
}
|
5923
tsdx/yarn.lock
Normal file
5923
tsdx/yarn.lock
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue