mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
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"
|
||
|
]
|
||
|
}
|