mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-29 15:25:50 +00:00
Former-commit-id: 51b44fc3be10358ecd4c7a888fc24e32a4bc8f05 [formerly ac1f09727228f1bfe9d9310f52e420d65b29331a] [formerly 13014845045c88b985e8d237c10be17d54e22e25 [formerly 394a2b1435a5417bf736a202803ab8667e0b458a]] Former-commit-id: 405b4c80bc2f24122adf77921ebf61bbca3a3bdc [formerly b0673eaa984d39a7bad4171f669f44c357011286] Former-commit-id: b18eaa9de4a9eab28006c25356c330e3976fb61c
26 lines
605 B
JSON
26 lines
605 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2024", "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" }]
|
|
}
|