1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2026-05-22 13:32:06 +00:00
Files
Jonathan Coates 2c7da47019 Update dependencies
- Bump Gradle to 9.4.1. This fixes the Kotlin Java 24 warnings.
 - Update Typescript to 6.0
2026-04-07 22:10:14 +01:00

34 lines
877 B
JSON

{
"compilerOptions": {
"module": "esNext",
"moduleResolution": "bundler",
"target": "es6",
"lib": [
"es2017",
"dom"
],
"newLine": "LF",
"types": ["node"],
// Additional compile options
"noEmitOnError": true,
"preserveWatchOutput": true,
"jsx": "react",
"jsxFactory": "h",
// Strict Type-Checking Options
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
// Needed for some of our internal stuff.
"allowSyntheticDefaultImports": true,
},
"include": [
"src/htmlTransform",
"src/frontend",
]
}