mznotes/tsconfig.json

21 lines
410 B
JSON
Raw Normal View History

2023-03-28 21:36:36 +00:00
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
2023-03-30 01:56:52 +00:00
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@panorama": ["src/*"]
}
2023-03-28 21:36:36 +00:00
}
}