mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-05 09:36:19 +00:00
d8e2161f15
Mostly useful as it moves some of our build logic out of the main project, as that's already pretty noisy!
33 lines
838 B
JSON
33 lines
838 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esNext",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"lib": [
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"newLine": "LF",
|
|
"baseUrl": ".",
|
|
// 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,
|
|
"importsNotUsedAsValues": "error",
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
// Needed for some of our internal stuff.
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
]
|
|
}
|