Skip to content

Commit

Permalink
Upgrade Raycast API
Browse files Browse the repository at this point in the history
  • Loading branch information
alanzchen committed May 3, 2023
1 parent 596e7f1 commit f5684c4
Show file tree
Hide file tree
Showing 4 changed files with 72 additions and 19 deletions.
12 changes: 4 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"]
}
"extends": [
"@raycast"
]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
/node_modules

# misc
.DS_Store
.DS_Store
raycast-env.d.ts
64 changes: 57 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 16",
"include": ["src/**/*", "encoder.json"],
"include": [
"src/**/*",
"encoder.json",
"raycast-env.d.ts"
],
"compilerOptions": {
"lib": ["es2021"],
"lib": [
"es2021"
],
"module": "commonjs",
"target": "es2021",
"strict": true,
Expand All @@ -14,4 +20,4 @@
"jsx": "react-jsx",
"resolveJsonModule": true
}
}
}

0 comments on commit f5684c4

Please sign in to comment.