speice.io/tsconfig.json

20 lines
482 B
JSON
Raw Normal View History

2023-04-15 12:55:22 -04:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
2023-04-21 21:39:53 -04:00
"allowJs": true,
2023-04-15 12:55:22 -04:00
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
2023-04-15 12:56:22 -04:00
}
2023-04-15 12:55:22 -04:00
}