forgejo-vite-ci/tsconfig.node.json
Fedor Katurov 9a3364f51e
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 17s
changed file
2024-08-16 23:22:01 +07:00

22 lines
479 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["vite.config.ts"]
}