mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 22:33:06 +03:00
24 lines
468 B
JSON
24 lines
468 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedParameters": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"moduleResolution": "node",
|
||
|
"esModuleInterop": true,
|
||
|
"noUnusedLocals": false,
|
||
|
"noImplicitAny": false,
|
||
|
"target": "es2015",
|
||
|
"module": "es2015",
|
||
|
"strict": true,
|
||
|
"jsx": "react"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|