mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-27 22:36:06 +00:00
24 lines
572 B
JSON
24 lines
572 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"jsx": "react-jsx",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"allowUnusedLabels": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["./src/**/*", "./.storybook/*"]
|
|
}
|