diff options
| author | Wojciech Kwolek <wojciech@kwolek.io> | 2024-06-08 05:29:15 +0200 |
|---|---|---|
| committer | Wojciech Kwolek <wojciech@kwolek.io> | 2024-06-08 05:29:15 +0200 |
| commit | 9400a1b2eede87a2d953b0c754f9c2c96cfb34f8 (patch) | |
| tree | 206ac808fc86f0dded4a20e8af2e2afda7b225ec /tsconfig.json | |
initial commit
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 16 |
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 + } +} |
