Skip to content

Commit cbfeb06

Browse files
committed
interval app
1 parent 4c81427 commit cbfeb06

File tree

8 files changed

+2211
-0
lines changed

8 files changed

+2211
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
dist/
3+
.DS_Store
4+
.env
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Interval TypeScript Starter
2+
3+
Created with
4+
[create-interval-app](https://github.com/interval/create-interval-app).
5+
6+
## Typing
7+
8+
The Interval SDK is written in TypeScript and should have rich type hints and
9+
inference. If you experience issues with IDE support, please ensure your editor
10+
is using the correct version of TypeScript that is installed in the workspace.
11+
If you are using Visual Studio Code, please try
12+
[using the workspace version of TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-the-workspace-version-of-typescript).
13+
Many editors should do this automatically.
14+
15+
If that doesn't help, please let us know!
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "interval-refund-user-tutorial-typescript-starter",
3+
"version": "0.1.0",
4+
"license": "MIT",
5+
"scripts": {
6+
"dev": "nodemon --watch src -e ts src/index.ts",
7+
"build": "tsc",
8+
"start": "node dist/index.js"
9+
},
10+
"dependencies": {
11+
"@interval/fake-stripe": "^1.0.0",
12+
"@interval/sdk": "^0.17.0"
13+
},
14+
"devDependencies": {
15+
"@types/node": "^17.0.35",
16+
"dotenv": "^16.0.1",
17+
"nodemon": "^2.0.15",
18+
"ts-node": "^10.4.0",
19+
"typescript": "4.5.x"
20+
}
21+
}

0 commit comments

Comments
 (0)