diff options
Diffstat (limited to 'packages/console/app/tsconfig.json')
| -rw-r--r-- | packages/console/app/tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/console/app/tsconfig.json b/packages/console/app/tsconfig.json new file mode 100644 index 000000000..07148a458 --- /dev/null +++ b/packages/console/app/tsconfig.json @@ -0,0 +1,21 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "skipLibCheck": true, + "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/*"] + } + } +} |
