memento-dev/app/tsconfig.json

24 lines
510 B
JSON
Executable File

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"module": "ESNext",
"noEmit": true,
"moduleResolution": "Bundler",
"target": "ES2022",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vite/client", "vike-solid/client"],
"jsx": "react-jsx",
"jsxImportSource": "solid-js",
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"exclude": ["dist"]
}