Restructuring for better layout and code reuse

This commit is contained in:
April Eaton 2026-01-12 17:41:57 +01:00
parent 7294793125
commit e85d93270b
Signed by: AprilEaton
GPG key ID: 0BCF829D48AE5C9D
6 changed files with 73 additions and 36 deletions

View file

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