mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2026-05-22 13:32:06 +00:00
2c7da47019
- Bump Gradle to 9.4.1. This fixes the Kotlin Java 24 warnings. - Update Typescript to 6.0
34 lines
877 B
JSON
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",
|
|
]
|
|
}
|