revite/tsconfig.json

22 lines
541 B
JSON
Raw Normal View History

2021-06-18 07:05:01 -04:00
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
2021-06-18 10:35:35 -04:00
"include": ["src", "ui/ui.tsx"]
2021-06-18 07:05:01 -04:00
}