mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 01:01:37 +03:00
26 lines
531 B
JSON
26 lines
531 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"noUnusedLocals": false,
|
|
"noImplicitAny": false,
|
|
"noEmit": true,
|
|
"target": "es2015",
|
|
"module": "es2015",
|
|
"strict": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [ "node_modules" ]
|
|
}
|