diff options
Diffstat (limited to 'tsconfig.web.json')
| -rw-r--r-- | tsconfig.web.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tsconfig.web.json b/tsconfig.web.json new file mode 100644 index 0000000..33e0bf2 --- /dev/null +++ b/tsconfig.web.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "bundler", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "react-jsx", + "outDir": "./out", + "rootDir": "./src/renderer/src", + "resolveJsonModule": true, + "skipLibCheck": true, + "strict": true, + "target": "ESNext", + "baseUrl": ".", + "paths": { + "@/*": ["src/renderer/src/*"] + } + }, + "include": ["src/renderer/src/**/*"] +} |
