[READ-ONLY] Mirror of https://github.com/tynanpurdy/microblog-for-raycast. Raycast extension for posting to microblog
409 B
16 lines
1{
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "include": ["src/**/*", "raycast-env.d.ts"],
4 "compilerOptions": {
5 "lib": ["ES2023"],
6 "module": "commonjs",
7 "target": "ES2023",
8 "strict": true,
9 "isolatedModules": true,
10 "esModuleInterop": true,
11 "skipLibCheck": true,
12 "forceConsistentCasingInFileNames": true,
13 "jsx": "react-jsx",
14 "resolveJsonModule": true
15 }
16}