refactor progress
This commit is contained in:
@@ -1,37 +1,33 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"extends": "../tsconfigs/frontend.json",
|
||||
"compilerOptions": {
|
||||
"target": "ES2023",
|
||||
"module": "ESNext",
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
||||
"jsx": "react-jsx",
|
||||
"noEmit": true,
|
||||
"sourceMap": true,
|
||||
"moduleResolution": "Bundler",
|
||||
"moduleDetection": "force",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"verbatimModuleSyntax": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"allowUnreachableCode": false,
|
||||
"allowUnusedLabels": false,
|
||||
"useDefineForClassFields": true,
|
||||
"skipLibCheck": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"allowArbitraryExtensions": true,
|
||||
"sourceMap": true,
|
||||
"noImplicitReturns": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"downlevelIteration": true,
|
||||
"allowJs": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"],
|
||||
"@pkgs/*": ["./pkgs/*"]
|
||||
"@app/*": ["./src/*"],
|
||||
"@app_scripts/*": ["./scripts/*"],
|
||||
"@pkgs/*": ["./pkgs/*"],
|
||||
"@fluxer/constants/src/*": ["./../packages/constants/src/*"],
|
||||
"@fluxer/date_utils/src/*": ["./../packages/date_utils/src/*"],
|
||||
"@fluxer/geo_utils/src/*": ["./../packages/geo_utils/src/*"],
|
||||
"@fluxer/limits/src/*": ["./../packages/limits/src/*"],
|
||||
"@fluxer/list_utils/src/*": ["./../packages/list_utils/src/*"],
|
||||
"@fluxer/markdown_parser/src/*": ["./../packages/markdown_parser/src/*"],
|
||||
"@fluxer/number_utils/src/*": ["./../packages/number_utils/src/*"],
|
||||
"@fluxer/schema/src/*": ["./../packages/schema/src/*"],
|
||||
"@fluxer/snowflake/src/*": ["./../packages/snowflake/src/*"],
|
||||
"@fluxer/ui/src/*": ["./../packages/ui/src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["./src/**/*"],
|
||||
"include": ["./src/**/*", "./scripts/**/*"],
|
||||
"exclude": ["node_modules", "dist", "coverage"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user