mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 14:40:13 -08:00
34 lines
907 B
JSON
34 lines
907 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"allowImportingTsExtensions": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@data/*": ["src/data/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@stores/*": ["src/stores/*"],
|
|
"@utils": ["src/utils.ts"],
|
|
"@types": ["src/types.ts"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|