Files
monitor-im-flur/tsconfig.app.json
T
arif f9f1757ec0
CI / build (push) Successful in 9s
CI / lint (push) Successful in 10s
CI / create-and-publish-docker-image (push) Successful in 11s
add proper types to store
2026-06-27 22:54:31 +02:00

33 lines
967 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"],
"@components/*": ["./src/components/*"],
"@store/*": ["./src/store/*"],
"@api/*": ["./src/api/*"],
"@types/*": ["./src/types/*"],
"@thunks/*": ["./src/store/thunks/*"],
"@slices/*": ["./src/store/slices/*"]
},
/* Linting */
"strict": true,
"noUnusedLocals": true
},
"include": ["src"]
}