summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorWojciech Kwolek <wojciech@kwolek.io>2024-06-08 05:29:15 +0200
committerWojciech Kwolek <wojciech@kwolek.io>2024-06-08 05:29:15 +0200
commit9400a1b2eede87a2d953b0c754f9c2c96cfb34f8 (patch)
tree206ac808fc86f0dded4a20e8af2e2afda7b225ec /tsconfig.json
initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..abb1580
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,16 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "include": ["src/**/*", "raycast-env.d.ts"],
+ "compilerOptions": {
+ "lib": ["ES2023"],
+ "module": "commonjs",
+ "target": "ES2022",
+ "strict": true,
+ "isolatedModules": true,
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "jsx": "react-jsx",
+ "resolveJsonModule": true
+ }
+}