mirror of
https://github.com/Tony0410/News-reader-pro.git
synced 2026-05-24 21:31:44 +08:00
Sets up the foundational elements for the NewsCaster AI application. This includes: - Initializing the project with Vite and React. - Defining core types for articles and player state. - Configuring build tools and TypeScript. - Adding essential dependencies like React, Vite, and Google's Gemini API client. - Providing initial README instructions for running locally. - Setting up basic styling and structure in index.html. - Defining available voices and playback constants. - Implementing utility functions for audio handling.
29 lines
542 B
JSON
29 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
}
|
|
} |