mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-10-31 23:26:19 +00:00
a4c9e89370
Provides a basic interface for running examples on tweaked.cc. This is probably janky as anything, but it works on my machine. This is the culmination of 18 months of me building far too much infrastructure (copy-cat, illuaminate), so that's nice I guess. I should probably get out more.
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",
|
|
]
|
|
}
|