Files
opencode-project-1/novel-writer/tsconfig.app.json
ImGKTZ27 8af220f873 feat: initialize novel writer application with React, Zustand, and Vite
- Added main application structure with React and TypeScript.
- Implemented Zustand for state management, including novel, chapters, characters, and relationships.
- Created initial CSS styles for the application layout and components.
- Integrated SVG assets for branding.
- Set up Vite configuration for development and build processes.
- Established TypeScript configurations for app and node environments.
2026-01-06 18:39:16 +05:00

29 lines
732 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}