Skip to content

Commit

Permalink
Showing 4 changed files with 33 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -5,5 +5,8 @@
"main": "dist/index.js",
"author": "kamiazya <yuki@kamiazya.tech>",
"license": "MIT",
"private": false
}
"private": false,
"dependencies": {
"typescript": "^3.3.3333"
}
}
Empty file added src/index.ts
Empty file.
20 changes: 20 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"experimentalDecorators": true,
"allowJs": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"outDir": "dist/"
},
"include": [
"src/*.ts"
],
"exclude": [
"node_modules"
]
}
8 changes: 8 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


typescript@^3.3.3333:
version "3.3.3333"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.3.3333.tgz#171b2c5af66c59e9431199117a3bcadc66fdcfd6"
integrity sha512-JjSKsAfuHBE/fB2oZ8NxtRTk5iGcg6hkYXMnZ3Wc+b2RSqejEqTaem11mHASMnFilHrax3sLK0GDzcJrekZYLw==

0 comments on commit 2d59909

Please sign in to comment.