Files
website-faleitostv/tsconfig.json
cauefaleiros 5e29b80159 feat: Add instructions for local development and deployment
Updates README.md with clear steps for running the AI Studio app locally, including prerequisites and commands.
Introduces a .env.example file to guide users on API key configuration.
Adds a .gitignore file to prevent unnecessary files from being committed.
Updates asset files (images) with new metadata.
2026-04-02 14:28:00 -03:00

27 lines
508 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./*"
]
},
"allowImportingTsExtensions": true,
"noEmit": true
}
}