mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-07-01 08:16:35 +00:00
Former-commit-id: b18f3f8a66af30b3ca2e72c8c606ca8ab86af4f4 [formerly 8575e008359b1aa833adf7bb2eea259287529189] [formerly a68536c2666c62e8a23ee09a88bffcec0e40f759 [formerly 7bf5435c892ce8daa8b609f8ca152f36bbb5a1f0]] Former-commit-id: d529c329663697d139cf7c0757eb9e027de0fc6b [formerly c9bd55c7716421ef2e0947c40315e3ff06bd94fc] Former-commit-id: 4e56cb48cec2896c59c4854a2120297b3384bbe5
65 lines
1.2 KiB
JSON
65 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES2024.Object"
|
|
],
|
|
"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"
|
|
}
|
|
]
|
|
} |