Files
opencode-project-1/novel-writer/tsconfig.node.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

27 lines
653 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2023",
"lib": ["ES2023"],
"module": "ESNext",
"types": ["node"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}