revite/tsconfig.json

25 lines
605 B
JSON
Raw Normal View History

2021-06-18 07:05:01 -04:00
{
"compilerOptions": {
"target": "ESNext",
2021-06-22 09:22:35 -04:00
"lib": ["DOM", "DOM.Iterable", "ESNext", "WebWorker"],
2021-07-06 17:23:04 -04:00
"allowJs": true,
2021-06-18 07:05:01 -04:00
"skipLibCheck": true,
"esModuleInterop": true,
2021-06-18 07:05:01 -04:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxFactory": "h",
2021-06-18 14:25:33 -04:00
"jsxFragmentFactory": "Fragment",
"types": [
"vite-plugin-pwa/client"
]
2021-06-18 07:05:01 -04:00
},
2021-06-18 10:35:35 -04:00
"include": ["src", "ui/ui.tsx"]
2021-06-18 07:05:01 -04:00
}