diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..c3d78aa --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "lib": ["DOM", "DOM.Iterable", "ESNext"], + "jsx": "react-jsx", + "moduleResolution": "Node", + "resolveJsonModule": true, + "isolatedModules": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true, + "baseUrl": ".", + "paths": { + "~/*": ["./src/*"] + }, + "outDir": "dist", + "noEmit": true + }, + "include": ["src", "vite.config.ts", ".eslintrc.cjs"], + "exclude": ["node_modules", "dist"] +}
\ No newline at end of file |