mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-07-01 08:16:35 +00:00
Former-commit-id: fe6117829b722ab508818a78b2283f64b584d8fd [formerly 0babcafb2f5232d2879c901e2bb4e927b7a4253b] [formerly 40990d78b72629671016f692f4bfcf1b01c28d5b [formerly abd8ebddc4fad85091e05e68b35bcf94cef28c2b]] Former-commit-id: 45afc7b70d9e55f433d0aa4754f1377e8ae6a8f3 [formerly 118436274893bc47ecf8786d5a206cdbdbbcaf2e] Former-commit-id: a42ca7c44156fbee533cdc849d850a4e5ac249f4
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
/* Bundler mode */
|
|
"outDir": "./tsbuild",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"verbatimModuleSyntax": true,
|
|
"composite": true,
|
|
"paths": {
|
|
"@providers/*": [
|
|
"./src/core/providers/*"
|
|
],
|
|
"@utils/*": [
|
|
"./src/core/utils/*"
|
|
],
|
|
"@apps/*": [
|
|
"./src/apps/*"
|
|
],
|
|
"@security/*": [
|
|
"./src/core/security/*"
|
|
],
|
|
"@core/*": [
|
|
"./src/core/*"
|
|
],
|
|
"@server/*": [
|
|
"../server/src/*"
|
|
],
|
|
}
|
|
},
|
|
"typeRoots": [
|
|
"../server/src"
|
|
],
|
|
"include": [
|
|
"./src/**/*",
|
|
"./src/**/*.json",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
},
|
|
{
|
|
"path": "../server/tsconfig.json"
|
|
}
|
|
]
|
|
} |