starveme/client/tsconfig.json

35 lines
824 B
JSON
Raw Normal View History

2026-01-09 23:44:58 +01:00
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"useDefineForClassFields": true,
2026-01-09 23:44:58 +01:00
/* Modules */
"module": "ESNext",
"moduleResolution": "bundler",
2026-01-09 23:44:58 +01:00
/* Emit */
"noEmit": true,
2026-01-09 23:44:58 +01:00
/* Interop Constraints */
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
2026-01-09 23:44:58 +01:00
/* Type Checking */
"strict": true,
2026-01-09 23:44:58 +01:00
/* Completeness */
"skipLibCheck": true,
"baseUrl": "./src",
"paths": {
"@/*": ["*"]
}
}
2026-01-09 23:44:58 +01:00
}