funkyFlaskTest/source/tsconfig.json
Dominik Krenn 6672ce76b0 refactor: update package configuration and change module system
- Renamed package to @funky-flask-test/funky-flask-test and updated version to 1.0.0
- Changed module type to ES2020 and updated exports for better compatibility
- Added new scripts for development and preview using Vite
- Replaced existing function with insertRickLabel that creates a clickable label to open a Rickroll link
- Updated TypeScript configuration to reflect new module system and output directory
2025-07-19 11:17:39 +02:00

14 lines
254 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true
},
"include": ["src"]
}