mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-17 07:14:51 +00:00
35 lines
860 B
JSON
35 lines
860 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,
|
||
|
"paths": {
|
||
|
"copycat/embed": [
|
||
|
"src/web/copy-cat.d.ts"
|
||
|
],
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/web",
|
||
|
]
|
||
|
}
|