martin/demo/frontend/tsconfig.json
2023-05-29 20:36:24 -04:00

20 lines
421 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"types": ["vite/client"],
"noEmit": true,
"strictNullChecks": false,
"isolatedModules": true
}
}