diff options
| author | Frank <[email protected]> | 2025-05-23 14:17:45 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | 83974e0c95d65c72d12e7d58a287514c39f3768f (patch) | |
| tree | 274625aa4693b0d71b50eae3cfedb5d6245f99f9 /app/packages/web/tsconfig.json | |
| parent | 59d43fa5da0619655c7ba3360e969bcbda1716ea (diff) | |
| download | opencode-83974e0c95d65c72d12e7d58a287514c39f3768f.tar.gz opencode-83974e0c95d65c72d12e7d58a287514c39f3768f.zip | |
Share: sync
Diffstat (limited to 'app/packages/web/tsconfig.json')
| -rw-r--r-- | app/packages/web/tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/packages/web/tsconfig.json b/app/packages/web/tsconfig.json new file mode 100644 index 000000000..7d5871a07 --- /dev/null +++ b/app/packages/web/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "preserve", + "jsxImportSource": "solid-js", + "allowJs": true, + "strict": true, + "noEmit": true, + "types": ["vinxi/types/client"], + "isolatedModules": true, + "paths": { + "~/*": ["./src/*"] + } + } +} |
