Skip to content

Commit

Permalink
Remove unnecessary script
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Jul 19, 2023
1 parent 87fecd9 commit 2caef99
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
4 changes: 1 addition & 3 deletions examples/soccer-stats/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@
"description": "An example app uses Soccer Stats API",
"private": true,
"scripts": {
"prepare": "ts-node scripts/download-oas.ts",
"start": "ts-node-dev index.ts"
},
"dependencies": {
"@types/node": "18.16.19",
"fets": "0.4.4",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "^5.0.0",
"zod": "3.21.4"
"typescript": "^5.0.0"
}
}
18 changes: 18 additions & 0 deletions examples/soccer-stats/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "esnext",
"moduleResolution": "node",
"module": "commonjs",
"sourceMap": true,
"lib": ["esnext", "DOM", "DOM.Iterable"],
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"outDir": "dist",
"strict": true,
"paths": {
"fets": ["../../packages/fets/src/index.ts"]
}
},
"files": ["index.ts"],
"exclude": ["node_modules", "dist", "test"]
}

0 comments on commit 2caef99

Please sign in to comment.