mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
29 lines
555 B
JSON
29 lines
555 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,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|