mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-07-01 08:16:35 +00:00
Former-commit-id: 7776d8f46e9837880cc05652a83cf4f54ca537aa [formerly 7c88b2576c97c39aa56e292cddebae5aa85fbbfc] [formerly 71edb7d816e8fb98fac7c90f126e8aa010c8c515 [formerly c8b6afebd5f0fb1b24ca90aee1701c329333c038]] Former-commit-id: ad30de5dae1818453bcdc4ae751503506b562a9d [formerly de626a88e28527d180f1a2b60b4fdd5dad8f40a2] Former-commit-id: e51b4ca7355866bb221d2b3efab68aec5b7c0499
26 lines
605 B
JSON
26 lines
605 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|