mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-19 12:51:51 +03:00
d98611a04b
Fully implements webterm support for multiple dill terminal sessions. Remaining work includes styling, session creation safety (name-wise), and general cleanup. Co-authored-by: tomholford <tomholford@users.noreply.github.com> Co-authored-by: liam-fitzgerald <liam@tlon.io>
27 lines
536 B
JSON
27 lines
536 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": false,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": false,
|
|
"noImplicitAny": false,
|
|
"noEmit": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"jsx": "react",
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|